mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
(function(window) {
|
|
window.ls.container.get("view").add({
|
|
selector: "data-ls-ui-loader",
|
|
controller: function(element, document) {
|
|
document.addEventListener('account.get', function() {
|
|
element.classList.add('loaded');
|
|
});
|
|
}
|
|
});
|
|
})(window);
|