handle most of the boilerplate stuff

This commit is contained in:
ansuz
2017-07-23 14:27:47 +02:00
parent 0d43a84c2b
commit dcf5719eaf
7 changed files with 289 additions and 1 deletions

15
www/todo/inner.js Normal file
View File

@@ -0,0 +1,15 @@
define([
'jquery',
//'css!/bower_components/components-font-awesome/css/font-awesome.min.css',
//'css!/bower_components/bootstrap/dist/css/bootstrap.min.css',
//'less!/file/todo.less',
//'less!/customize/src/less/cryptpad.less',
'less!/customize/src/less/toolbar.less',
], function ($) {
$('.loading-hidden').removeClass('loading-hidden');
// dirty hack to get rid the flash of the lock background
/*
setTimeout(function () {
$('#app').addClass('ready');
}, 100);*/
});