diff options
Diffstat (limited to 'js/timer.js')
-rwxr-xr-x | js/timer.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/timer.js b/js/timer.js index 318230a..1eafdaf 100755 --- a/js/timer.js +++ b/js/timer.js @@ -29,6 +29,7 @@ function Decrement() { function countdown() { setTimeout('Decrement()',1000); } +(function ($) { $(document).ready(function() { basePath = Drupal.settings.basePath; modPath = basePath + "tbc_external_review/"; @@ -37,4 +38,4 @@ $(document).ready(function() { secs = mins * 60 + tmp; countdown(); }); - +})(jQuery); |