remove console log
This commit is contained in:
@@ -105,7 +105,6 @@ prop.push(
|
|||||||
prop.forEach( function( prop ) {
|
prop.forEach( function( prop ) {
|
||||||
if( (!whitelist.includes(prop)) && (!prop.startsWith('HTML')) ) {
|
if( (!whitelist.includes(prop)) && (!prop.startsWith('HTML')) ) {
|
||||||
try {
|
try {
|
||||||
console.log(prop)
|
|
||||||
Object.defineProperty( globaly, prop, {
|
Object.defineProperty( globaly, prop, {
|
||||||
get : function() {
|
get : function() {
|
||||||
throw "Security Exception: cannot access "+prop;
|
throw "Security Exception: cannot access "+prop;
|
||||||
@@ -117,7 +116,6 @@ prop.forEach( function( prop ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
console.log(`allow ${prop}`)
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user