JavaScript error in 2.3.4.1

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
4/3/2010 1:24:35 PM
Gravatar
Total Posts 171
I am a Russian programmer

Re: JavaScript error in 2.3.4.1

Hi, Joe

There is another solution to this problem. I noticed that the skin Artistera no such problem. I examined the difference. The difference in the file script.js. I deleted from this file extra lines and left only

-----------------

var artEventHelper = {
'bind': function(obj, evt, fn) {
if (obj.addEventListener)
obj.addEventListener(evt, fn, false);
else if (obj.attachEvent)
obj.attachEvent('on' + evt, fn);
else
obj['on' + evt] = fn;
}
};
 

var artLoadEvent = (function() {
var list = [];

artEventHelper.bind(window, 'load', ready);
return ({
add: function(f) {
list.push(f);
}
})
})();
----------------------------

and than add in layout.Master

<portal:SkinFolderScript ID="sfs1" runat="server" ScriptFileName="script.js" />

After these steps, everything was perfect

But this solution is not beautiful

Best regards, Alexander

4/6/2010 7:13:30 AM
Gravatar
Total Posts 171
I am a Russian programmer

Re: JavaScript error in 2.3.4.1

I downloaded jquery nightly builds from http://docs.jquery.com/Downloading_jQuery

This version is Sun Feb 28 10:55:59 2010

Original version is Sat Feb 13 22:33:48 2010

The new version of the jquery, this error has been corrected!

Best regards, Alexander

4/6/2010 9:36:16 AM
Gravatar
Total Posts 57

Re: JavaScript error in 2.3.4.1

Thanks buddy.

4/6/2010 11:56:22 AM
Gravatar
Total Posts 18439

Re: JavaScript error in 2.3.4.1

That is good to hear. jQuery makes a new release about every month, so this means we can expect it will be fixed in the next release of jQuery.

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.