summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/main.mobile.js
Unidiff
Diffstat (limited to 'frontend/gamma/js/main.mobile.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/main.mobile.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/frontend/gamma/js/main.mobile.js b/frontend/gamma/js/main.mobile.js
new file mode 100644
index 0000000..60a32fa
--- a/dev/null
+++ b/frontend/gamma/js/main.mobile.js
@@ -0,0 +1,64 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz Community Edition.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please
8refer to http://www.clipperz.com.
9
10* Clipperz Community Edition is free software: you can redistribute
11 it and/or modify it under the terms of the GNU Affero General Public
12 License as published by the Free Software Foundation, either version
13 3 of the License, or (at your option) any later version.
14
15* Clipperz Community Edition is distributed in the hope that it will
16 be useful, but WITHOUT ANY WARRANTY; without even the implied
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details.
19
20* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see
22 <http://www.gnu.org/licenses/>.
23
24*/
25
26function _pm_logEvent(anEvent) {
27 //console.log("####", anEvent);
28
29 anEvent.preventDefault();
30}
31
32function handleGenericDeferredError(anError) {
33 var result;
34
35 if (anError instanceof MochiKit.Async.CancelledError) {
36 result = anError;
37 } else {
38MochiKit.Logging.logError("## MainController - GENERIC ERROR" + "\n" + "==>> " + anError + " <<==\n" + anError.stack);
39 result = new MochiKit.Async.CancelledError(anError);
40 }
41
42 return result;
43}
44
45
46Clipperz.PM.RunTime = {};
47
48
49function run() {
50 Clipperz.PM.Strings.Languages.initSetup();
51
52 Clipperz.PM.RunTime.mainController = new Clipperz.PM.UI.Mobile.Controllers.MainController();
53 Clipperz.PM.RunTime.mainController.run();
54}
55
56// if (navigator.standalone == false) {
57 // window.localStorage.setItem('PIN', '1234');
58 // alert("Saved PIN");
59// } else {
60 // alert (window.localStorage.getItem('PIN'));
61// }
62
63
64MochiKit.DOM.addLoadEvent(run);