summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/Clipperz/YUI/Utils.js
Unidiff
Diffstat (limited to 'frontend/gamma/js/Clipperz/YUI/Utils.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/Clipperz/YUI/Utils.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/gamma/js/Clipperz/YUI/Utils.js b/frontend/gamma/js/Clipperz/YUI/Utils.js
index e9929fc..4def842 100644
--- a/frontend/gamma/js/Clipperz/YUI/Utils.js
+++ b/frontend/gamma/js/Clipperz/YUI/Utils.js
@@ -1,95 +1,93 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof YAHOO == 'undefined') { YAHOO = {}; }; 24if (typeof YAHOO == 'undefined') { YAHOO = {}; };
27if (typeof YAHOO.util == 'undefined') { YAHOO.util = {}; }; 25if (typeof YAHOO.util == 'undefined') { YAHOO.util = {}; };
28if (typeof YAHOO.util.Dom == 'undefined') { YAHOO.util.Dom = {}; }; 26if (typeof YAHOO.util.Dom == 'undefined') { YAHOO.util.Dom = {}; };
29 27
30YAHOO.extend = function(subc, superc, overrides) { 28YAHOO.extend = function(subc, superc, overrides) {
31 var F = function() {}; 29 var F = function() {};
32 F.prototype=superc.prototype; 30 F.prototype=superc.prototype;
33 subc.prototype=new F(); 31 subc.prototype=new F();
34 subc.prototype.constructor=subc; 32 subc.prototype.constructor=subc;
35 subc.superclass=superc.prototype; 33 subc.superclass=superc.prototype;
36 if (superc.prototype.constructor == Object.prototype.constructor) { 34 if (superc.prototype.constructor == Object.prototype.constructor) {
37 superc.prototype.constructor=superc; 35 superc.prototype.constructor=superc;
38 } 36 }
39 37
40 if (overrides) { 38 if (overrides) {
41 for (var i in overrides) { 39 for (var i in overrides) {
42 subc.prototype[i]=overrides[i]; 40 subc.prototype[i]=overrides[i];
43 } 41 }
44 } 42 }
45}; 43};
46 44
47YAHOO.override = function(origclass, overrides){ 45YAHOO.override = function(origclass, overrides){
48 if(overrides){ 46 if(overrides){
49 var p = origclass.prototype; 47 var p = origclass.prototype;
50 for(var method in overrides){ 48 for(var method in overrides){
51 p[method] = overrides[method]; 49 p[method] = overrides[method];
52 } 50 }
53 } 51 }
54}; 52};
55 53
56YAHOO.extendX = function(subclass, superclass, overrides){ 54YAHOO.extendX = function(subclass, superclass, overrides){
57 YAHOO.extend(subclass, superclass); 55 YAHOO.extend(subclass, superclass);
58 subclass.override = function(o){ 56 subclass.override = function(o){
59 YAHOO.override(subclass, o); 57 YAHOO.override(subclass, o);
60 }; 58 };
61 if(!subclass.prototype.override){ 59 if(!subclass.prototype.override){
62 subclass.prototype.override = function(o){ 60 subclass.prototype.override = function(o){
63 for(var method in o){ 61 for(var method in o){
64 this[method] = o[method]; 62 this[method] = o[method];
65 } 63 }
66 }; 64 };
67 } 65 }
68 if(overrides){ 66 if(overrides){
69 subclass.override(overrides); 67 subclass.override(overrides);
70 }; 68 };
71 69
72}; 70};
73 71
74YAHOO.util.Dom.get = function(el) { 72YAHOO.util.Dom.get = function(el) {
75 if (!el) { return null; } // nothing to work with 73 if (!el) { return null; } // nothing to work with
76 74
77 if (typeof el != 'string' && !(el instanceof Array) ) { // assuming HTMLElement or HTMLCollection, so pass back as is 75 if (typeof el != 'string' && !(el instanceof Array) ) { // assuming HTMLElement or HTMLCollection, so pass back as is
78 return el; 76 return el;
79 } 77 }
80 78
81 if (typeof el == 'string') { // ID 79 if (typeof el == 'string') { // ID
82 return document.getElementById(el); 80 return document.getElementById(el);
83 } 81 }
84 else { // array of ID's and/or elements 82 else { // array of ID's and/or elements
85 var collection = []; 83 var collection = [];
86 for (var i = 0, len = el.length; i < len; ++i) { 84 for (var i = 0, len = el.length; i < len; ++i) {
87 collection[collection.length] = YAHOO.util.Dom.get(el[i]); 85 collection[collection.length] = YAHOO.util.Dom.get(el[i]);
88 } 86 }
89 87
90 return collection; 88 return collection;
91 } 89 }
92 90
93 return null; // safety, should never happen 91 return null; // safety, should never happen
94}; 92};
95 93