drop 'loading' text from loading screen
This commit is contained in:
parent
2ef4ebc6ef
commit
a34d1793e0
@ -410,7 +410,7 @@ define([
|
|||||||
}),
|
}),
|
||||||
h('div.spinnerContainer',
|
h('div.spinnerContainer',
|
||||||
h('span.fa.fa-circle-o-notch.fa-spin.fa-4x.fa-fw')),
|
h('span.fa.fa-circle-o-notch.fa-spin.fa-4x.fa-fw')),
|
||||||
h('p', Msg.loading)
|
h('p'),
|
||||||
])
|
])
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -18,13 +18,6 @@ define([
|
|||||||
if (!document.body) { return; }
|
if (!document.body) { return; }
|
||||||
clearInterval(intr);
|
clearInterval(intr);
|
||||||
document.body.appendChild(elem);
|
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);
|
intr = setInterval(append, 100);
|
||||||
append();
|
append();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user