ymdp 0.7.5 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/ymdp/javascripts/jquery/init.js +10 -14
- data/ymdp.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.6
|
@@ -84,20 +84,16 @@ YMDP.Init.after = function() {
|
|
84
84
|
|
85
85
|
// Execute the before, startup and after methods. Do not overwrite. (Change YMDP.Init.startup to create a custom initializer.)
|
86
86
|
YMDP.init = function() {
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
YMDP.Init.startup();
|
98
|
-
} catch (omg) {
|
99
|
-
alert(omg.message);
|
100
|
-
}
|
87
|
+
Debug.log("OIB.init for view " + View.name, "<%= @message %>");
|
88
|
+
Logger.init();
|
89
|
+
Tags.init();
|
90
|
+
YMDP.Init.browser();
|
91
|
+
YMDP.Init.resources();
|
92
|
+
I18n.addLanguageToBody();
|
93
|
+
I18n.translateLoading();
|
94
|
+
I18n.translateError();
|
95
|
+
YMDP.Init.before();
|
96
|
+
YMDP.Init.startup();
|
101
97
|
};
|
102
98
|
|
103
99
|
YMDP.Init.browser = function() {
|
data/ymdp.gemspec
CHANGED
metadata
CHANGED