View difference between Paste ID: c5Q66WKj and Xb7yh0NP
SHOW: | | - or go back to the newest paste.
1
Loader = (function() {
2
	var public = {};
3
4
	var loader = document.getElementById("loader");
5
6
	public.ShowLoader = function() {
7
		loader.style.display = "block";
8
	}
9
10
	public.HideLoader = function() {
11
		loader.style.display = "none";
12
	}
13
14
	return public
15
})();