UNPKG

meteor-autoform-materialize

Version:
17 lines (13 loc) 438 B
/*jshint esversion: 6 */ import { Template } from 'meteor/templating'; import Utility from '../../utilities'; import './textarea.html'; Template.afTextarea_materialize.helpers({ atts: function() { var atts = Utility.attsToggleInvalidClass.call(this); return AutoForm.Utility.addClass(atts, "materialize-textarea"); } }); Template.afTextarea_materialize.rendered = function() { this.$('textarea').characterCounter(); };