Added missing super in constructor.

This commit is contained in:
Martin Edenhofer 2015-11-02 14:53:34 +01:00
parent d67bae2005
commit 45413b56b2
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
class App.ControllerForm extends App.Controller
constructor: (params) ->
super
for key, value of params
@[key] = value

View file

@ -10,6 +10,7 @@ class App.ControllerTable extends App.Controller
'.js-tableHead': 'tableHead'
constructor: (params) ->
super
for key, value of params
@[key] = value