summaryrefslogtreecommitdiff
path: root/plugins/InfiniteScroll/InfiniteScrollPlugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/InfiniteScroll/InfiniteScrollPlugin.php')
-rw-r--r--plugins/InfiniteScroll/InfiniteScrollPlugin.php18
1 files changed, 1 insertions, 17 deletions
diff --git a/plugins/InfiniteScroll/InfiniteScrollPlugin.php b/plugins/InfiniteScroll/InfiniteScrollPlugin.php
index 7e942550a..1e4a03e4f 100644
--- a/plugins/InfiniteScroll/InfiniteScrollPlugin.php
+++ b/plugins/InfiniteScroll/InfiniteScrollPlugin.php
@@ -41,22 +41,6 @@ class InfiniteScrollPlugin extends Plugin
function onEndShowScripts($action)
{
$action->script('plugins/InfiniteScroll/jquery.infinitescroll.min.js');
- $loading_image = common_path('plugins/InfiniteScroll/ajax-loader.gif');
- $js_string = <<<EOT
-<script type="text/javascript">
-jQuery(document).ready(function($){
- $('notices_primary').infinitescroll({
- nextSelector : "li.nav_next a",
- loadingImg : "$loading_image",
- 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"
- });
-});
-</script>
-EOT;
- $action->raw($js_string);
+ $action->script('plugins/InfiniteScroll/infinitescroll.js');
}
}