You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
330 B
13 lines
330 B
define([], function(){ |
|
var |
|
rev = "$Rev: 64998be $".match(/[0-9a-f]{7,}/), |
|
version= { |
|
major: 1, minor: 17, patch: 3, flag: "", |
|
revision: rev ? rev[0] : NaN, |
|
toString: function(){ |
|
var v= version; |
|
return v.major + "." + v.minor + "." + v.patch + v.flag + " (" + v.revision + ")"; |
|
} |
|
}; |
|
return version; |
|
});
|
|
|