소스 검색

Minimal changes

soyjavi 13 년 전
부모
커밋
cc5823605b
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      examples/kitchen-sink/app/events.notification.js
  2. 1 1
      examples/kitchen-sink/app/resources/sections/touchevents.html

+ 1 - 1
examples/kitchen-sink/app/events.notification.js

@@ -10,7 +10,7 @@ Lungo.Events.init({
 
     'tap section#notification a[data-action=loading]': function() {
         Lungo.Notification.loading();
-        // setTimeout(Lungo.Notification.hide, 2000);
+        setTimeout(Lungo.Notification.hide, 3000);
     },
 
     'tap section#notification a[data-action=success]': function() {

+ 1 - 1
examples/kitchen-sink/app/resources/sections/touchevents.html

@@ -10,7 +10,7 @@
         <div class="eight rows list scroll">
         <ul>
             <li class="anchor">Test events in your Mobile Device</li>
-            <li data-event="touch"><strong>Touch me!</strong></li>
+            <!-- <li data-event="touch"><strong>Touch me!</strong></li> -->
             <li data-event="tap" id="prueba"><strong>Tap me!</strong></li>
             <li data-event="doubleTap"><strong>doubleTap me!</strong></li>
             <li data-event="hold"><strong>hold me!</strong></li>