[Prototype-core] Re: IE bug still there..

2007-10-12 Thread metavida

Actually, this is fixed in subversion. The correct code is:

document.write(script id=__onDOMContentLoaded defer src=//:\/
script);

see: 
http://groups.google.com/group/prototype-core/browse_frm/thread/f0766d012d2c2192/852271ba1073aa0a

On Oct 8, 4:30 am, Ihárosi Wiktor [EMAIL PROTECTED] wrote:
 On 10/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

  should be

  4014: src='http://javascript:void(0)'\/script);

  I forget what brings up the error but.. :) fix! #3

 no :) there is no javascript and http at all.
 this it the right way to work with https. (afaik)

 it should be as dean wrote:

   @MSIE.+win: {
 init: function() {
   this.base();
   // Matthias Miller/Mark Wubben/Paul Sowden/Me
   document.write(script id=__ready defer src=//:\/script);
   document.all.__ready.onreadystatechange = function() {
 if (this.readyState == complete) {
   this.removeNode(); // tidy
   DOMContentLoaded.fire();
 }
   };
 }
   },

 source:http://base2.googlecode.com/svn/trunk/lib/src/base2-dom.js

 best,

 w


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---



[Prototype-core] Re: IE bug still there..

2007-10-08 Thread Ihárosi Wiktor

On 10/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 should be

 4014: src='http://javascript:void(0)'\/script);

 I forget what brings up the error but.. :) fix! #3

no :) there is no javascript and http at all.
this it the right way to work with https. (afaik)

it should be as dean wrote:

  @MSIE.+win: {
init: function() {
  this.base();
  // Matthias Miller/Mark Wubben/Paul Sowden/Me
  document.write(script id=__ready defer src=//:\/script);
  document.all.__ready.onreadystatechange = function() {
if (this.readyState == complete) {
  this.removeNode(); // tidy
  DOMContentLoaded.fire();
}
  };
}
  },

source: http://base2.googlecode.com/svn/trunk/lib/src/base2-dom.js

best,

w

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---