cryptpad/customize.dist/DecorateToolbar.js

25 lines
571 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);
$('head').append($('<link>', {
rel: 'stylesheet',
href: '/customize/main.css'
}));
}
});
};
return {
main: main
};
});