ZF-5797: Online Programmer's Reference Guide has a javascript error.
Description
I find a javascript error when I browse http://framework.zend.com/manual/en/ .
The message says there is some error of identifier, string or numeral in the line 45 letter 1 .
I think a code causes this error. The code is in the component list in rightside of the online manual as following.
var zend = {
showVideo: function(target) {
dojo.query(".video-box").forEach(function(item){
dojo.style(item, { display: "none" });
});
dojo.query(".video-tab").forEach(function(item){
dojo.removeClass(item, 'current');
});
dojo.style(target, { display: "block" });
var link = target + '-link';
dojo.addClass(link, "current");
},
};
You can find ``` in line 44 if you display html source .
Comments
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2009-04-03T18:30:42.000+0000
Today, I find this issue to be fixed. I do not know when it was fixed, so I set 1.7.8 to fix version.