define([ 'require', 'domReady', 'jquery', 'bootstrap.wysihtml5.en-US' ], function(require, domReady, $) { 'use strict'; domReady(function() { var myCustomTemplates = { linkalt : function(context) { return "
  • " + "" + "" + "LINK" + "
  • "; }, custom1: function(context) { return "
  • " + "hellip" + "
  • "; } }; $('.textarea').wysihtml5({ toolbar: { custom1: true, size: 'sm' }, customTemplates: myCustomTemplates }); }); });