diff options
author | Struan Donald <struan@exo.org.uk> | 2013-07-12 09:47:56 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-07-12 11:00:11 +0100 |
commit | 25e3a0c94551b0faac3f16e0598e6f4bdffcf7d8 (patch) | |
tree | f78f68ba8ed39e5b5004e41435aac3e9bbe9c044 /www/js/views/save_offline.js | |
parent | 4c2206c97250b7f72eb04d13ae886a7fb4f4086a (diff) |
instead of using js to inject the correct cordova js file in to
index.html restructure things so that the common files are a level down
and the platofrm specific ones are directly placed in the relevant
project. This both makes for less fuss and also avoids the error with
Android < v3 instantiating cordova twice.
Note that the iOS common assets are included by a build script rather
than a symlink as symlinking doesn't seem to agree with Xcode
Diffstat (limited to 'www/js/views/save_offline.js')
-rw-r--r-- | www/js/views/save_offline.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www/js/views/save_offline.js b/www/js/views/save_offline.js deleted file mode 100644 index e9cedc8..0000000 --- a/www/js/views/save_offline.js +++ /dev/null @@ -1,31 +0,0 @@ -(function (FMS, Backbone, _, $) { - _.extend( FMS, { - SaveOfflineView: FMS.FMSView.extend({ - template: 'save_offline', - id: 'save_offline', - - events: { - 'pagehide': 'destroy', - 'pageshow': 'afterDisplay', - 'vclick #save_report': 'saveReport', - 'vclick #discard': 'discardReport' - }, - - saveReport: function() { - FMS.clearCurrentDraft(); - this.navigate('reports'); - }, - - discardReport: function() { - var reset = FMS.removeDraft(FMS.currentDraft.id, true); - var that = this; - reset.done( function() { that.onDraftRemove(); } ); - reset.fail( function() { that.onDraftRemove(); } ); - }, - - onDraftRemove: function() { - this.navigate( 'around', 'left' ); - } - }) - }); -})(FMS, Backbone, _, $); |