I have a really basic EmberJS application started that I want to use within a phonegap application. The following code works great in FF 4 but in Chrome and Safari the view is not updated in the handlebars section.
The Main JS file has the following code.
(function(window) {
function Main() {
MainApp = Ember.Application.create({
appname: "My App",
ready: function() {
console.log("hello from ember");
app.initialize();
app.deviceready();
}
});
}
window.Main = Main;
}(window))
I found that if I removed the self executing function it will render just fine in webkit
MainApp = Ember.Application.create({
appname: "My App",
ready: function() {
console.log("hello from ember");
app.initialize();
app.deviceready();
}
});
So I guess the real question is why does wrapping Ember.Application.create() into a Main() function cause this issue in webkit ?
In my index.html file I have the following script block to execute main.js
<script type="text/javascript">
function init() {
var mainApp = new Main();
}
</script>
Then my handlebars code looks like so.
<script type="text/x-handlebars">
<h1>hello from {{MainApp.appname}}</h1>
</script>