提交 130001c3 编写于 作者: T Thomas Fuchs

Update to latest script.aculo.us trunk, fixes possible issue with Effect.Appear on IE

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3824 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 57565b35
......@@ -86,9 +86,12 @@ Element.childrenWithClassName = function(element, className) {
}
Element.forceRerendering = function(element) {
var n = document.createTextNode(' ');
$(element).appendChild(n);
Element.remove(n);
try {
element = $(element);
var n = document.createTextNode(' ');
element.appendChild(n);
element.removeChild(n);
} catch(e) {}
}
Array.prototype.call = function() {
......
......@@ -558,9 +558,10 @@ var Sortable = {
findElements: function(element, options) {
if(!element.hasChildNodes()) return null;
var elements = [];
var only = options.only ? [options.only].flatten() : null;
$A(element.childNodes).each( function(e) {
if(e.tagName && e.tagName.toUpperCase()==options.tag.toUpperCase() &&
(!options.only || (Element.hasClassName(e, options.only))))
(!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
elements.push(e);
if(options.tree) {
var grandchildren = this.findElements(e, options);
......
......@@ -86,9 +86,12 @@ Element.childrenWithClassName = function(element, className) {
}
Element.forceRerendering = function(element) {
var n = document.createTextNode(' ');
$(element).appendChild(n);
Element.remove(n);
try {
element = $(element);
var n = document.createTextNode(' ');
element.appendChild(n);
element.removeChild(n);
} catch(e) {}
}
Array.prototype.call = function() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册