Bring back noop function which was accidentally destroyed

This commit is contained in:
Piotr Sarnacki 2016-01-27 12:32:53 +01:00
parent f6d6e9150a
commit 9a9d3805d8

View File

@ -227,5 +227,8 @@ export default Ember.Component.extend({
toggleLog() {
this.toggleProperty('logIsVisible');
}
}
},
// don't remove this, it's needed as an empty willChange callback
noop: function() {}
});