blob: 0de80048e28fb0edae49e43a5c191b085d3ffa96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var SettingsView = FormView.extend({
el: "#settings",
events: {
},
initialize: function(){
this.$form = this.$("form")
this.$msg = this.$(".msg")
this.scroller = new IScroll('#settings', app.iscroll_options)
},
show: function(){
if (! auth.logged_in()) { return app.router.go("intro") }
app.footer.show("SAVE")
document.body.className = "settings"
this.deferScrollToTop()
},
save: function(){
},
})
|