[Prototype-core] bug report - sorry, I didn't find the other way to report bugs in prototype.js

2009-09-25 Thread RafaƂ Michalski
prototype.js - 1.6.1 I think there is a bug in function stopObserving on line: 4571 there is: if (!responders) return; i am quite sure it was supposed to be: if (!responders) return element; Because it destroys chaining, I'v had in my code: document.stopObserving('mousemove',

[Prototype-core] Bug : Object.isNumber() and Hash.toQueryString()

2008-10-07 Thread atrepp
Hi, I have a problem with Object.isNumber() because it test only for type number and not for the object Number. http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/375-objectisnumber-is-false-for-number-object With Webkit (5525.20.1) and Protototype 1.6.0.3 : var a = new

[Prototype-core] Bug from prototype?

2007-12-04 Thread [EMAIL PROTECTED]
Hello all, I'm using the prototype.js in my application and i have an error: Error: element has no properties Source File: http://www/application/js/prototype.js Line: 3844 function getEventID(element) { if (element._eventID) return element._eventID; arguments.callee.id = arguments.callee.id

[Prototype-core] bug in Ajax methods regarding fixed array parameter format in Rails 1.2.5 (Autocompleter) ?

2007-10-14 Thread Andrew Kaspick
Hello, This is an issue that I've come across with the new rails 1.2.5 release, but I'm not sure if the problem lies within Rails, prototype or scriptaculous. My testing seems to point more towards scriptaculous, but I'm not sure and maybe somebody can explain this one. Looking at the two

[Prototype-core] *Bug* - transport.responseJSON doesn't work with konqueror

2007-10-07 Thread [EMAIL PROTECTED]
I just noticed today, because usually I use firefox, that using the responseJSON property incorrectly works with konqueror (3.5.7), however on the other hand using the prior method of evaluating the response text using evalJSON works fine - i.e. : t.responseText.evalJSON() //Works with konqueror

[Prototype-core] Bug in the compressed and formatted code

2007-10-05 Thread xinze
files:protopacked_v2.16b.zip -formatted prototype-1.5.2_pre0.js I found that the function getElementsByClassName in the compression and formatting code could not use in the Firefox Today, I download the file 'protopacked_v2.16b.zip', and replace prototype.js with the compressed code ,

[Prototype-core] Bug?

2007-08-21 Thread [EMAIL PROTECTED]
4014: src='://javascript:void(0)'\/script); shouldn't this be: 4014: src='http://javascript:void(0)'\/script); ie6 was tossing errors on-load, but only when mod-rewrite was turned on and my server was dumping a full web page back to this request, which shouldn't even hit the server,

[Prototype-core] Bug in the Prototype's String.unescapeHTML()?

2007-07-05 Thread Mons
I think there is a wrong order of replace in String.unescapeHTML extension for WebKit and IE. amp; should be replaced after lt; and gt;. Otherwise we get amp;lt;.unescapeHTML() produces instead of lt; --~--~-~--~~~---~--~~ You received this message because you

[Prototype-core] bug in toQueryParam methods....

2007-04-25 Thread jdalton
Hello, I just upgraded my Prado PHP Framework version which includes Prototype 1.5.1rc2 (not rc3) and I noticed some of my Ajax calls were not being returned properly on further inspection I noticed that the toQueryParam method was not outputting the proper data. Here is the string I had.

[Prototype-core] Bug in Position.cumulativeOffset

2007-03-04 Thread Searle
I can't be bothered to find out how to open a bug report, so I'll just put it here. Maybe somone cares. cumulativeOffset ignores borders of parent elements, which is wrong. It was hard to find any information because ALL implementations I found were wrong but one. (Astonishing, it's very basic.)