Herbert Vojčík 7 years ago
parent
commit
84a3ebe0ae
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/Platform-DOM.js
  2. 1 1
      src/Platform-DOM.st

+ 1 - 1
src/Platform-DOM.js

@@ -72,7 +72,7 @@ $globals.PlatformDom.klass);
 $core.addMethod(
 $core.method({
 selector: "newCustomEvent:detail:",
-protocol: 'node creation',
+protocol: 'creation',
 fn: function (aString,anObject){
 var self=this;
 //>>excludeStart("ctx", pragmas.excludeDebugContexts);

+ 1 - 1
src/Platform-DOM.st

@@ -9,7 +9,7 @@ toArray: aDomList
 <inlineJS: 'return Array.prototype.slice.call(aDomList)'>
 ! !
 
-!PlatformDom class methodsFor: 'node creation'!
+!PlatformDom class methodsFor: 'creation'!
 
 newCustomEvent: aString detail: anObject
 <inlineJS: 'return new CustomEvent(aString, {detail: anObject})'>