提交 6398108e 编写于 作者: J Jason Park
......@@ -4,6 +4,15 @@ const Editor = require('../editor');
const TracerManager = require('../tracer_manager');
const DOM = require('../dom/setup');
const {
showLoadingSlider,
hideLoadingSlider
} = require('../dom/loading_slider');
const {
getFileDir
} = require('../utils');
const Cache = require('./cache');
const state = {
......@@ -34,9 +43,9 @@ const App = function () {
this.setIsLoading = (loading) => {
state.isLoading = loading;
if (loading) {
$('#loading-slider').removeClass('loaded');
showLoadingSlider();
} else {
$('#loading-slider').addClass('loaded');
hideLoadingSlider();
}
};
......@@ -81,4 +90,4 @@ const App = function () {
App.prototype = Cache;
module.exports = App;
\ No newline at end of file
module.exports = App;
const showLoadingSlider = () => {
$('#loading-slider').removeClass('loaded');
};
const hideLoadingSlider = () => {
$('#loading-slider').addClass('loaded');
};
module.exports = {
showLoadingSlider,
hideLoadingSlider
};
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册