Changeset 4221
- Timestamp:
- 12/18/07 22:37:02 (9 months ago)
- Location:
- trunk/plugins/livequery
- Files:
-
- 1 added
- 3 removed
- 3 modified
-
jquery.livequery.js (modified) (4 diffs)
-
jquery.livequery.min.js (deleted)
-
jquery.livequery.pack.js (deleted)
-
test/jquery.js (added)
-
test/jquery.r2892.js (deleted)
-
test/test.html (modified) (1 diff)
-
test/test2.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/livequery/jquery.livequery.js
r3072 r4221 3 3 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. 4 4 * 5 * Version: 1.0.15 * Version: @VERSION 6 6 * Requires jQuery 1.1.3+ 7 * Docs: http:// brandonaaron.net/docs/livequery/7 * Docs: http://docs.jquery.com/Plugins/livequery 8 8 */ 9 9 … … 78 78 }; 79 79 80 $. extend($.livequery.prototype,{80 $.livequery.prototype = { 81 81 stop: function() { 82 82 var query = this; … … 135 135 } 136 136 } 137 } );137 }; 138 138 139 139 $.extend($.livequery, { … … 244 244 return r; 245 245 }; 246 247 // Give the init function the jQuery prototype for later instantiation (needed after Rev 4091) 248 $.prototype.init.prototype = $.prototype; 246 249 247 250 })(jQuery); -
trunk/plugins/livequery/test/test.html
r3072 r4221 13 13 * html #anim { position: absolute; } 14 14 </style> 15 <script type="text/javascript" src="jquery. r2892.js"></script>15 <script type="text/javascript" src="jquery.js"></script> 16 16 <script src="../jquery.livequery.js" type="text/javascript" charset="utf-8"></script> 17 17 <script type="text/javascript" charset="utf-8"> -
trunk/plugins/livequery/test/test2.html
r3072 r4221 13 13 * html #anim { position: absolute; } 14 14 </style> 15 <script type="text/javascript" src="jquery. r2892.js"></script>15 <script type="text/javascript" src="jquery.js"></script> 16 16 <script src="../jquery.livequery.js" type="text/javascript" charset="utf-8"></script> 17 17 <script type="text/javascript" charset="utf-8">
