diff options
author | John Resig <jeresig@gmail.com> | 2006-10-10 00:23:18 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-10-10 00:23:18 +0000 |
commit | 766c3765bd30e6a643eff99da0f1c293aa2897bd (patch) | |
tree | 63f945c0f62a0a99b6a21ab9b896a46fd961ac08 /src | |
parent | 6cb2e8ee8b801381fba9fcb14078f87de2517926 (diff) | |
download | jquery-766c3765bd30e6a643eff99da0f1c293aa2897bd.tar.gz jquery-766c3765bd30e6a643eff99da0f1c293aa2897bd.zip |
Now have accurate version information built into jquery.js - will build it into the docs and test suite next.
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 341bd8813..ab7564fd7 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1,5 +1,5 @@ /*
- * jQuery - New Wave Javascript
+ * jQuery @VERSION - New Wave Javascript
*
* Copyright (c) 2006 John Resig (jquery.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
@@ -190,7 +190,7 @@ var $ = jQuery; jQuery.fn = jQuery.prototype = {
/**
- * The current SVN version of jQuery.
+ * The current version of jQuery.
*
* @private
* @property
@@ -198,7 +198,7 @@ jQuery.fn = jQuery.prototype = { * @type String
* @cat Core
*/
- jquery: "$Rev$",
+ jquery: "@VERSION",
/**
* The number of elements currently matched.
|