prototype: Make submitting forms work in Opera < 9.1.

This commit is contained in:
Tobie Langel 2007-10-18 15:46:30 +00:00
parent b83ae95d90
commit 29c0de6937
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
*SVN*
* Make submitting forms work in Opera < 9.1. Closes #9917, #9463, #8260. [kangax]
* Fix template evaluation with empty replacements. Closes #9692. [Ryan McGeary]
* Hash#toTemplateReplacements is an alias for Hash#toObject so you can once again pass hashes to Template#evaluate and String#interpolate. [sam]

1
src/prototype.js vendored
View File

@ -15,6 +15,7 @@ var Prototype = {
XPath: !!document.evaluate,
ElementExtensions: !!window.HTMLElement,
SpecificElementExtensions:
document.createElement('div').__proto__ &&
document.createElement('div').__proto__ !==
document.createElement('form').__proto__
},