소스 검색

Listing 7.5: cycle's :paused pseudo-selector.

Frederic G. MARAND 9 년 전
부모
커밋
9274cc106c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Chapter 7/07.js

+ 1 - 1
Chapter 7/07.js

@@ -11,6 +11,6 @@ $(document).ready(function () {
   }).appendTo($controls);
   $('<button>Resume</button>').click(function (event) {
     event.preventDefault();
-    $books.cycle('resume');
+    $('ul:paused').cycle('resume');
   }).appendTo($controls);
 });