JSCS Says Goodbye

This commit is contained in:
Nicholas Hubbard
2016-05-03 19:09:38 -04:00
parent 0252495eca
commit 15887994fe
10 changed files with 83 additions and 60 deletions

View File

@@ -48,8 +48,9 @@
// The dummy class constructor
function Class() {
// All construction is actually done in the init method
if (!initializing && this.init)
this.init.apply(this, arguments);
if (!initializing && this.init) {
this.init.apply(this, arguments);
}
}
// Populate our constructed prototype object