mirror of
https://github.com/e107inc/e107.git
synced 2025-08-08 07:36:32 +02:00
prototype/scriptaculous libraries version update
This commit is contained in:
3484
e107_files/jslib/prototype/prototype.js
vendored
3484
e107_files/jslib/prototype/prototype.js
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us builder.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us builder.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
//
|
//
|
||||||
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
||||||
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
||||||
|
16
e107_files/jslib/scriptaculous/controls.js
vendored
16
e107_files/jslib/scriptaculous/controls.js
vendored
@@ -1,8 +1,8 @@
|
|||||||
// script.aculo.us controls.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us controls.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
// (c) 2005-2009 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
|
// (c) 2005-2010 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
|
||||||
// (c) 2005-2009 Jon Tirsen (http://www.tirsen.com)
|
// (c) 2005-2010 Jon Tirsen (http://www.tirsen.com)
|
||||||
// Contributors:
|
// Contributors:
|
||||||
// Richard Livsey
|
// Richard Livsey
|
||||||
// Rahul Bhargava
|
// Rahul Bhargava
|
||||||
@@ -268,10 +268,8 @@ Autocompleter.Base = Class.create({
|
|||||||
if(!this.changed && this.hasFocus) {
|
if(!this.changed && this.hasFocus) {
|
||||||
this.update.innerHTML = choices;
|
this.update.innerHTML = choices;
|
||||||
Element.cleanWhitespace(this.update);
|
Element.cleanWhitespace(this.update);
|
||||||
|
|
||||||
if (this.update.down()) { //SecretR: quick fix
|
|
||||||
Element.cleanWhitespace(this.update.down());
|
Element.cleanWhitespace(this.update.down());
|
||||||
}
|
|
||||||
if(this.update.firstChild && this.update.down().childNodes) {
|
if(this.update.firstChild && this.update.down().childNodes) {
|
||||||
this.entryCount =
|
this.entryCount =
|
||||||
this.update.down().childNodes.length;
|
this.update.down().childNodes.length;
|
||||||
@@ -368,10 +366,6 @@ Ajax.Autocompleter = Class.create(Autocompleter.Base, {
|
|||||||
new Ajax.Request(this.url, this.options);
|
new Ajax.Request(this.url, this.options);
|
||||||
},
|
},
|
||||||
|
|
||||||
onException: function (request, e) {
|
|
||||||
console.log(request, e);
|
|
||||||
},
|
|
||||||
|
|
||||||
onComplete: function(request) {
|
onComplete: function(request) {
|
||||||
this.updateChoices(request.responseText);
|
this.updateChoices(request.responseText);
|
||||||
}
|
}
|
||||||
|
6
e107_files/jslib/scriptaculous/dragdrop.js
vendored
6
e107_files/jslib/scriptaculous/dragdrop.js
vendored
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us dragdrop.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us dragdrop.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
//
|
//
|
||||||
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
||||||
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
||||||
@@ -374,7 +374,7 @@ var Draggable = Class.create({
|
|||||||
if (this.options.scroll == window) {
|
if (this.options.scroll == window) {
|
||||||
with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
|
with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
|
||||||
} else {
|
} else {
|
||||||
p = Position.page(this.options.scroll);
|
p = Position.page(this.options.scroll).toArray();
|
||||||
p[0] += this.options.scroll.scrollLeft + Position.deltaX;
|
p[0] += this.options.scroll.scrollLeft + Position.deltaX;
|
||||||
p[1] += this.options.scroll.scrollTop + Position.deltaY;
|
p[1] += this.options.scroll.scrollTop + Position.deltaY;
|
||||||
p.push(p[0]+this.options.scroll.offsetWidth);
|
p.push(p[0]+this.options.scroll.offsetWidth);
|
||||||
|
4
e107_files/jslib/scriptaculous/effects.js
vendored
4
e107_files/jslib/scriptaculous/effects.js
vendored
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us effects.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
// Contributors:
|
// Contributors:
|
||||||
// Justin Palmer (http://encytemedia.com/)
|
// Justin Palmer (http://encytemedia.com/)
|
||||||
// Mark Pilgrim (http://diveintomark.org/)
|
// Mark Pilgrim (http://diveintomark.org/)
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us scriptaculous.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us scriptaculous.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
//
|
//
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining
|
// Permission is hereby granted, free of charge, to any person obtaining
|
||||||
// a copy of this software and associated documentation files (the
|
// a copy of this software and associated documentation files (the
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
||||||
|
|
||||||
var Scriptaculous = {
|
var Scriptaculous = {
|
||||||
Version: '1.8.3',
|
Version: '1.9.0',
|
||||||
require: function(libraryName) {
|
require: function(libraryName) {
|
||||||
try{
|
try{
|
||||||
// inserting via DOM fails in Safari 2.0, so brute force approach
|
// inserting via DOM fails in Safari 2.0, so brute force approach
|
||||||
@@ -54,7 +54,7 @@ var Scriptaculous = {
|
|||||||
Scriptaculous.REQUIRED_PROTOTYPE);
|
Scriptaculous.REQUIRED_PROTOTYPE);
|
||||||
|
|
||||||
/*var js = /scriptaculous\.js(\?.*)?$/;
|
/*var js = /scriptaculous\.js(\?.*)?$/;
|
||||||
$$('head script[src]').findAll(function(s) {
|
$$('script[src]').findAll(function(s) {
|
||||||
return s.src.match(js);
|
return s.src.match(js);
|
||||||
}).each(function(s) {
|
}).each(function(s) {
|
||||||
var path = s.src.replace(js, ''),
|
var path = s.src.replace(js, ''),
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us slider.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us slider.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Marty Haught, Thomas Fuchs
|
// Copyright (c) 2005-2010 Marty Haught, Thomas Fuchs
|
||||||
//
|
//
|
||||||
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
||||||
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
// script.aculo.us sound.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us sound.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
//
|
//
|
||||||
// Based on code created by Jules Gravinese (http://www.webveteran.com/)
|
// Based on code created by Jules Gravinese (http://www.webveteran.com/)
|
||||||
//
|
//
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
// script.aculo.us unittest.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
|
// script.aculo.us unittest.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
|
||||||
|
|
||||||
// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
||||||
// (c) 2005-2009 Jon Tirsen (http://www.tirsen.com)
|
// (c) 2005-2010 Jon Tirsen (http://www.tirsen.com)
|
||||||
// (c) 2005-2009 Michael Schuerig (http://www.schuerig.de/michael/)
|
// (c) 2005-2010 Michael Schuerig (http://www.schuerig.de/michael/)
|
||||||
//
|
//
|
||||||
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
||||||
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
||||||
|
Reference in New Issue
Block a user