PluginProbe
Tagembed: Social Media Feeds and Customer Reviews Widget / 5.7
Tagembed: Social Media Feeds and Customer Reviews Widget v5.7
7.5 7.6 7.7 7.4 trunk 3.10 3.9 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 All 42 releases
tagembed-widget / assets / js / loader.js

loader.js in Tagembed: Social Media Feeds and Customer Reviews Widget 5.7, at assets/js/loader.js

17 lines 966 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 let __tagembedLoaderImageCustomPath = __tagembed__pluginLoaderImageUrlObj.__tagembed__pluginLoaderImageUrl + 'assets/images/loader.gif';
2 if (typeof __tagembed__plugin_url_for_js != "undefined") {
3 __tagembedLoaderImageCustomPath = __tagembed__plugin_url_for_js + 'assets/images/loader.gif';
4 }
5 function __tagembed__open_loader(text = '', loaderImage = '') {
6 text = (text) ? text : 'Please Wait...';
7 loaderImage = (loaderImage) ? loaderImage : __tagembedLoaderImageCustomPath;
8 document.body.style.cursor = "wait";
9 let elem = document.createElement('div');
10 elem.innerHTML = '<div id="__tagembed__loader" class="__tagembed__loader-overlay"><div class="__tagembed__loader"><img src="' + loaderImage + '"/><br/>' + text + '</div></div>';
11 document.body.appendChild(elem.firstChild);
12 }
13 function __tagembed__close_loader() {
14 document.body.style.cursor = "auto";
15 let elem = document.querySelector('#__tagembed__loader');
16 elem.remove();
17 }