meteor-autoform-materialize
Version:
Materialize theme for Autoform
17 lines (13 loc) • 438 B
JavaScript
/*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();
};