aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/views/sent.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/views/sent.js')
-rw-r--r--www/js/views/sent.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/www/js/views/sent.js b/www/js/views/sent.js
new file mode 100644
index 0000000..cc683e1
--- /dev/null
+++ b/www/js/views/sent.js
@@ -0,0 +1,15 @@
+;(function (FMS, Backbone, _, $) {
+ _.extend( FMS, {
+ SentView: FMS.FMSView.extend({
+ template: 'sent',
+ id: 'sent-page',
+ prev: 'around',
+
+ events: {
+ 'pagehide': 'destroy',
+ 'pageshow': 'afterDisplay',
+ 'vclick .ui-btn-left': 'onClickButtonPrev'
+ }
+ })
+ });
+})(FMS, Backbone, _, $);