drop 'loading' text from loading screen
parent
2ef4ebc6ef
commit
a34d1793e0
|
@ -410,7 +410,7 @@ define([
|
|||
}),
|
||||
h('div.spinnerContainer',
|
||||
h('span.fa.fa-circle-o-notch.fa-spin.fa-4x.fa-fw')),
|
||||
h('p', Msg.loading)
|
||||
h('p'),
|
||||
])
|
||||
);
|
||||
};
|
||||
|
|
|
@ -18,14 +18,7 @@ define([
|
|||
if (!document.body) { return; }
|
||||
clearInterval(intr);
|
||||
document.body.appendChild(elem);
|
||||
require([
|
||||
'/customize/messages.js',
|
||||
|
||||
'css!/bower_components/components-font-awesome/css/font-awesome.min.css',
|
||||
], function (Messages) {
|
||||
document.getElementById('cp-loading-message').innerText = Messages.loading;
|
||||
});
|
||||
};
|
||||
intr = setInterval(append, 100);
|
||||
append();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue