コーヒースクリプトでの例
window.APP = Ember.Application.create()
APP.stuff = Ember.Object.create(
name: "The Name"
)
APP.things = Ember.Object.create(
nameBinding: "APP.stuff.name"
)
APP.gizmos = Ember.Object.create(
nameBinding: "APP.stuff.name"
)
APP.stuff がその name プロパティに2つのバインディングを持っていることを検出する方法はありますか?