JSCS Says Goodbye

This commit is contained in:
Nicholas Hubbard 2016-05-03 19:09:38 -04:00
parent 0252495eca
commit 15887994fe
No known key found for this signature in database
GPG key ID: 732AF7DD9E9C91F5
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