2009-01-27 21:42:32 +00:00
|
|
|
/* Prototype JavaScript framework, version <%= PROTOTYPE_VERSION %>
|
|
|
|
* (c) 2005-2009 Sam Stephenson
|
|
|
|
*
|
|
|
|
* Prototype is freely distributable under the terms of an MIT-style license.
|
|
|
|
* For details, see the Prototype web site: http://www.prototypejs.org/
|
|
|
|
*
|
|
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
|
2007-01-18 22:24:27 +00:00
|
|
|
var Prototype = {
|
|
|
|
Version: '<%= PROTOTYPE_VERSION %>',
|
2007-02-19 22:23:10 +00:00
|
|
|
|
|
|
|
Browser: {
|
2008-07-17 20:22:18 +00:00
|
|
|
IE: !!(window.attachEvent &&
|
|
|
|
navigator.userAgent.indexOf('Opera') === -1),
|
|
|
|
Opera: navigator.userAgent.indexOf('Opera') > -1,
|
2007-02-19 22:23:10 +00:00
|
|
|
WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
|
2008-07-17 20:22:18 +00:00
|
|
|
Gecko: navigator.userAgent.indexOf('Gecko') > -1 &&
|
|
|
|
navigator.userAgent.indexOf('KHTML') === -1,
|
2007-10-08 17:30:40 +00:00
|
|
|
MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
|
2007-02-19 22:23:10 +00:00
|
|
|
},
|
2007-04-24 03:31:14 +00:00
|
|
|
|
2007-01-18 22:24:27 +00:00
|
|
|
BrowserFeatures: {
|
2007-01-27 19:45:34 +00:00
|
|
|
XPath: !!document.evaluate,
|
2008-03-30 03:21:58 +00:00
|
|
|
SelectorsAPI: !!document.querySelector,
|
2009-01-22 02:29:23 +00:00
|
|
|
ElementExtensions: (function() {
|
|
|
|
if (window.HTMLElement && window.HTMLElement.prototype)
|
|
|
|
return true;
|
|
|
|
if (window.Element && window.Element.prototype)
|
|
|
|
return true;
|
|
|
|
})(),
|
|
|
|
SpecificElementExtensions: (function() {
|
|
|
|
// First, try the named class
|
|
|
|
if (typeof window.HTMLDivElement !== 'undefined')
|
|
|
|
return true;
|
|
|
|
|
|
|
|
var div = document.createElement('div');
|
|
|
|
if (div['__proto__'] && div['__proto__'] !==
|
|
|
|
document.createElement('form')['__proto__']) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
})()
|
2007-01-18 22:24:27 +00:00
|
|
|
},
|
2007-04-24 03:31:14 +00:00
|
|
|
|
2007-06-13 20:57:19 +00:00
|
|
|
ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
|
|
|
|
JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,
|
2007-04-24 03:31:14 +00:00
|
|
|
|
|
|
|
emptyFunction: function() { },
|
2007-01-18 22:24:27 +00:00
|
|
|
K: function(x) { return x }
|
2007-07-26 02:03:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (Prototype.Browser.MobileSafari)
|
|
|
|
Prototype.BrowserFeatures.SpecificElementExtensions = false;
|
2007-10-16 03:08:31 +00:00
|
|
|
|
2009-01-27 21:42:32 +00:00
|
|
|
//= require "lang"
|
|
|
|
//= require "ajax"
|
|
|
|
//= require "dom"
|
2007-01-18 22:24:27 +00:00
|
|
|
|
2009-01-27 21:42:32 +00:00
|
|
|
//= require "deprecated"
|