aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2013-08-07 17:20:18 +0100
committerStruan Donald <struan@exo.org.uk>2013-08-07 17:20:18 +0100
commita2e08984fd8e7e2631e8041b0233a80e2df75f30 (patch)
treea0df4d227969d8337534071406cf5e05d4ba46ec
parent1821af6398de04bb7b5cd38cf27cca6ba9d881b9 (diff)
correct transition direction for offline -> drafts
-rw-r--r--src/js/views/offline.js4
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() {