Skip to content

Commit

Permalink
call super() on destroy()
Browse files Browse the repository at this point in the history
  • Loading branch information
mwittig committed Apr 16, 2016
1 parent 663e12b commit dfc204f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions devices/denon-avr-input-selector.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-master-volume.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-mute-switch.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-power-switch.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-presence-sensor.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-zone-switch.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down
1 change: 1 addition & 0 deletions devices/denon-avr-zone-volume.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module.exports = (env) ->

destroy: () ->
@_base.cancelUpdate()
super()

_requestUpdate: () ->
@_base.cancelUpdate()
Expand Down

0 comments on commit dfc204f

Please sign in to comment.