work on contacts2 until feature parity is reached

This commit is contained in:
ansuz
2017-08-22 15:55:49 +02:00
parent 002eed0d6f
commit 89a13d4b21
8 changed files with 718 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
define([
'jquery',
'css!/bower_components/components-font-awesome/css/font-awesome.min.css',
'css!/bower_components/bootstrap/dist/css/bootstrap.min.css',
'less!/contacts/main.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);
});