Removed alerts.

Reviewd by me.
This commit is contained in:
Francisco Ryan Tolmasky I
2010-01-27 04:01:11 -08:00
parent fcfeb29be5
commit 2bc31de69d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -370,9 +370,9 @@ if (new prototype_bug().member)
{
var fast_class_createInstance = class_createInstance;
alert('THE BUG');
class_createInstance = function(/*Class*/ aClass)
{alert("theee bugggg");
{
var object = fast_class_createInstance(aClass);
if (object)
+1 -1
View File
@@ -17,7 +17,7 @@ function cacheExportedNamesAndValues()
cachedExportedNames.push(exportName);
cachedExportedValues.push(exports[exportName]);
}
alert(cachedExportedNames);
exportedNames = function()
{
return cachedExportedNames;