diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-02-17 12:03:14 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-02-17 12:03:14 -0500 |
commit | 46e9aa13aa87955b441bc63b7cf2f58622b131b0 (patch) | |
tree | f57c2927d3ecfe415bac335cbed243bc61face06 /plugins/InfiniteScroll | |
parent | c19300272f0074359b2713c35d2fb46bbd1b42ec (diff) |
htmloutputter->script() special cases src's that begin with plugin/ or local/ so that plugins don't need to include common_path() in every call to $action->script()
Adjust plugins to not call common_path() when it's not necessary
Fix minify plugin
Diffstat (limited to 'plugins/InfiniteScroll')
-rw-r--r-- | plugins/InfiniteScroll/InfiniteScrollPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/InfiniteScroll/InfiniteScrollPlugin.php b/plugins/InfiniteScroll/InfiniteScrollPlugin.php index 77ad83a51..a4d1a5d05 100644 --- a/plugins/InfiniteScroll/InfiniteScrollPlugin.php +++ b/plugins/InfiniteScroll/InfiniteScrollPlugin.php @@ -40,8 +40,8 @@ class InfiniteScrollPlugin extends Plugin function onEndShowScripts($action) { - $action->script(common_path('plugins/InfiniteScroll/jquery.infinitescroll.js')); - $action->script(common_path('plugins/InfiniteScroll/infinitescroll.js')); + $action->script('plugins/InfiniteScroll/jquery.infinitescroll.js'); + $action->script('plugins/InfiniteScroll/infinitescroll.js'); } function onPluginVersion(&$versions) |