I was unable to complete this lesson as there was no instruction on how to reference items from the source object. Maybe super should be included with the inheritance lesson?
|
activate() { |
|
super.activate(); |
|
this.log("Activating..."); |
|
} |
|
deactivate() { |
|
super.deactivate(); |
|
this.log("Deactivating..."); |