control-freak-ide/dist/all/docs/admin-theme/bower_components/bootstrap3-wysihtml5-bower/examples/start.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

19 lines
366 B
JavaScript

define([
'require',
'domReady',
'jquery',
'bootstrap.wysihtml5.de-DE'
], function(require, domReady, $) {
'use strict';
domReady(function() {
$('.textarea').wysihtml5({
locale: 'de-DE'
});
$('#btn-settext').on('click', function(e) {
$('.textarea').html('Some text dynamically set.');
e.preventDefault();
});
});
});