It says in the readme.txt file of ZF version > 1.9.0 :
"* Dojo upgraded to 1.3.2."
yet if you check the dojo external file
"ZF\1.9.4\externals\dojo\dojo\_base\_loader\bootstrap.js" lines 198-218:
<pre>
dojo.version = {
// summary:
// version number of dojo
// major: Integer
// Major version. If total version is
"1.2.0beta1", will be 1
// minor: Integer
// Minor version. If total version is
"1.2.0beta1", will be 2
// patch: Integer
// Patch version. If total version is
"1.2.0beta1", will be 0
// flag: String
// Descriptor flag. If total version is
"1.2.0beta1", will be "beta1"
// revision: Number
// The SVN rev from which dojo was pulled
major: 1, minor: 3, patch: 0, flag: "dev",
revision: rev ? +rev[0] : NaN,
toString: function(){
with(d.version){
return major + "." + minor + "." + patch + flag
+ " (" + revision + ")";
// String
}
}
}
</pre>
version 1.3.0 or am I missing something?
--
View this message in context:
http://www.nabble.com/External-Dojo-Version--1.3.0-OR-1.3.2--tp25923134p25923134.html
Sent from the Zend Framework mailing list archive at Nabble.com.