|
|
@@ -6,6 +6,7 @@ App.Events = (function(lng, undefined) {
|
|
|
});
|
|
|
*/
|
|
|
|
|
|
+
|
|
|
lng.dom('#event_touchstart').touch(function(event) { alert("touchstart!"); });
|
|
|
//OR
|
|
|
//lng.dom('#event_touchstart').on('touchstart', function(event) { alert("TOUCH_START!"); });
|
|
|
@@ -31,4 +32,17 @@ App.Events = (function(lng, undefined) {
|
|
|
});
|
|
|
|
|
|
|
|
|
+ //SPECIAL
|
|
|
+ $$('section#navigation').on('load', function(event) {
|
|
|
+ console.error('Load #navigation', event);
|
|
|
+ });
|
|
|
+
|
|
|
+ $$('section#navigation').on('unload', function(event) {
|
|
|
+ console.error('Unload', event);
|
|
|
+ });
|
|
|
+
|
|
|
+ $$('article#authors').on('load', function(event) {
|
|
|
+ console.error('loaded article');
|
|
|
+ });
|
|
|
+
|
|
|
})(LUNGO);
|