I've some troubles with the observer. I would like to observe some model properties but somehow the observer is triggered on initialisation also. I only want to trigger the function when a user is really changing one of those properties.
The observer looks something like this:
watchProperties: function(){
console.log('Changed :D');
}.observes('model.propertyOne', 'model.propertyTwo', 'model.propertyThree')
The modelhook is set in another route with modelFor and the model is serialised embedded JSON data. Is it possible that one of these things causes the issue?