diff options
author | Struan Donald <struan@exo.org.uk> | 2013-08-07 17:20:18 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-08-07 17:20:18 +0100 |
commit | a2e08984fd8e7e2631e8041b0233a80e2df75f30 (patch) | |
tree | a0df4d227969d8337534071406cf5e05d4ba46ec | |
parent | 1821af6398de04bb7b5cd38cf27cca6ba9d881b9 (diff) |
correct transition direction for offline -> drafts
-rw-r--r-- | src/js/views/offline.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/views/offline.js b/src/js/views/offline.js index 4a6e9c9..fcf8ee1 100644 --- a/src/js/views/offline.js +++ b/src/js/views/offline.js @@ -127,13 +127,13 @@ del.fail( function() { that.draftDeleted(); } ); } else { FMS.clearCurrentDraft(); - this.navigate( this.next, 'left' ); + this.navigate( this.next ); } }, draftDeleted: function() { FMS.clearCurrentDraft(); - this.navigate( this.next, 'left' ); + this.navigate( this.next ); }, updateCurrentReport: function() { |