You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cryptpad/customize.dist/DecorateToolbar.js

21 lines
416 B
JavaScript

/*
globals define
*/
define([
'/bower_components/jquery/dist/jquery.min.js'
], function () {
var $ = window.jQuery;
var main = function () {
$.ajax({
url: '/customize/BottomBar.html',
success: function (ret) {
$('iframe').height('96%');
$('body').append(ret);
}
});
};
return {
main: main
};
});