summaryrefslogtreecommitdiff
path: root/js/load-local-storage.js
blob: 7306a58da87836f5a7083271c1fa274b113b96b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// CCTV Control 
// 
// Author: 	Florian Raemisch
// Email: 	olf@subsignal.org
//
// cctv-control is a webinterface to control and view 
// mjpeg encoded videos by cctv cameras which are
// proxied by mjpegplexer. camera control is possible
// with arrow-keys, if mjpegplexer is configured 
// properly.
//
// This Software is licensed under the GPL Version 3, 29 June 2007


window.onDomReady = initReady;


window.onDomReady(loadImg);


function initReady(fn)  {
	if(document.addEventListener) {
		document.addEventListener("DOMContentLoaded", fn, false);
	}
}


function loadImg()	{
	
	var display = document.getElementById("storImage"),
	    body = document.getElementById("formBackground"),
	    stor = localStorage.getItem("snapShot");
	
	if (stor)	{
		display.setAttribute("src", stor);
		document.body.style.background="#f3f3f3 url('"+ stor + "') no-repeat";
		display.setAttribute("src", stor);
	}
	

}