a serious bug .I have worked it for 2 days..help
Posted: Fri Mar 19, 2010 2:13 am
http://127.0.0.1/test/prototype.js
when I access this url in firefox .it is different from my real js file..
I show to you my error example
look at the note ,in fact it shouldn't be showed here .
and my whole prototype.js in my directory is ok..
when I access this url in firefox .it is different from my real js file..
I show to you my error example
Code: Select all
Element.Methods.getStyle = function(element, style) {
element = $(element);
style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
var value = element.style[style];
if (!value && element.currentStyle) value = element.currentStyle[style];
if (style == 'opacity') {
if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
if (value[1]) return parseFloat(va/* Prototype JavaScript framework, version 1.6.0.3
* (c) 2005-2008 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/
*
*--------------------------------------------------------------------------*/
var Prototype = {
Version: '1.6.0.3',
and my whole prototype.js in my directory is ok..
