diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-06 15:26:13 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-06 15:26:13 -0400 |
commit | 932d1fb7ce06081c788ea088171fd69ef03cd394 (patch) | |
tree | bfcf28ea8ecb27ad028e6e97a8ff5aa339bb338b /plugins/InfiniteScroll/infinitescroll.js | |
parent | 380c48662673d64214e64766f38014c6057d3142 (diff) |
Move inline javascript to a separate js file
Diffstat (limited to 'plugins/InfiniteScroll/infinitescroll.js')
-rw-r--r-- | plugins/InfiniteScroll/infinitescroll.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/InfiniteScroll/infinitescroll.js b/plugins/InfiniteScroll/infinitescroll.js new file mode 100644 index 000000000..b80bd4ec5 --- /dev/null +++ b/plugins/InfiniteScroll/infinitescroll.js @@ -0,0 +1,12 @@ +jQuery(document).ready(function($){ + $('notices_primary').infinitescroll({ + nextSelector : "li.nav_next a", + loadingImg : $('address .url')[0].href+'plugins/InfiniteScroll/ajax-loader.gif', + text : "<em>Loading the next set of posts...</em>", + donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>", + navSelector : "div.pagination", + contentSelector : "#notices_primary", + itemSelector : "ol.notices" + }); +}); + |