Works in Chrome/Safari, not in FF. Perhaps these two Ember.js warnings mean something:
WARNING: Computed properties will soon be cacheable by default. To enable this in your app, set ENV.CP_DEFAULT_CACHEABLE = true.
ember-0.9.8.1.js (line 65)
WARNING: The way that the {{view}} helper affects templates is about to change. Previously, templates inside child views would use the new view as the context. Soon, views will preserve their parent context when rendering their template. You can opt-in early to the new behavior by setting ENV.VIEW_PRESERVES_CONTEXT = true. For more information, see https://gist.github.com/2494968. You should update your templates as soon as possible; this default will change soon, and the option will be eliminated entirely before the 1.0 release.
Update #1:
It looks like turning off all the selected (after the elements have been created) also helps. Attach to the end of your script:
setTimeout( function (){ $('option').prop('selected',false); } , 100 );
// Anonymized as per FabrÃcio Matté's suggestion
Note: There may be a callback you can do it in, instead of running it automatically 100ms after.
Update #2:
It also looks like instead of setting the properties of the option, you can remove the content of the Ember creation:
App.myController = Ember.Object.create({
//content: 10 /* comment out, remove, or set to '' instead of 10 */
});
Note: I do not use Ember, so I don't know if this would effect anything
$('select script').remove();after pageload, but it didnt help. – sabithpocker Sep 1 '12 at 0:57