summaryrefslogtreecommitdiffstatshomepage
path: root/misc/progress.js
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-18 13:46:55 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-18 13:46:55 +0000
commitac484c277a0ac0627561d2cac1f4ea47ab5da00b (patch)
treeeac82650ab4c17d3f62461127403e2aff344cd82 /misc/progress.js
parentb6025a8820ffc84fccbde3a8f77ba6f9c183bfc4 (diff)
downloaddrupal-ac484c277a0ac0627561d2cac1f4ea47ab5da00b.tar.gz
drupal-ac484c277a0ac0627561d2cac1f4ea47ab5da00b.zip
#125030 by kkaefer, quicksketch, dvessel, Steven, and John Resig: Allow compatibility with other JavaScript libraries.
Diffstat (limited to 'misc/progress.js')
-rw-r--r--misc/progress.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/misc/progress.js b/misc/progress.js
index 631a5f4f877..b0fad15733d 100644
--- a/misc/progress.js
+++ b/misc/progress.js
@@ -1,4 +1,5 @@
// $Id$
+(function($) {
/**
* A progressbar object. Initialized with the given id. Must be inserted into
@@ -105,3 +106,5 @@ Drupal.progressBar.prototype.displayError = function (string) {
this.errorCallback(this);
}
};
+
+})(jQuery);