cryptpad/customize.dist/DecorateToolbar.js

21 lines
416 B
JavaScript
Raw Normal View History

2016-02-15 15:47:53 +00:00
/*
globals define
*/
2015-01-30 17:12:20 +00:00
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
};
2015-01-30 17:12:20 +00:00
});