Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 function init() | 1 function init() |
2 { | 2 { |
3 try | 3 try |
4 { | 4 { |
5 initLanguageSettings(); | 5 initLanguageSettings(); |
6 | 6 |
7 initDomainSettings(); | 7 initDomainSettings(); |
8 } | 8 } |
9 catch (err) | 9 catch (err) |
10 { | 10 { |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 { | 139 { |
140 optionsDomain.remove(removeOptions[i]); | 140 optionsDomain.remove(removeOptions[i]); |
141 } | 141 } |
142 }, false); | 142 }, false); |
143 } | 143 } |
144 | 144 |
145 window.UserSettings = function() | 145 window.UserSettings = function() |
146 { | 146 { |
147 return window.Settings; | 147 return window.Settings; |
148 } | 148 } |
LEFT | RIGHT |