cryptpad/customize.dist/DecorateToolbar.js
2016-07-04 15:19:57 +02:00

24 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
};
});