Remove the confirm for the continue button
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 20 Oct 2017 18:03:03 +0000 (14:03 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 20 Oct 2017 18:03:03 +0000 (14:03 -0400)
Not needed.

js/frontRegApp.js
js/views/front/app.js

index 689b5a8..fbcb3fe 100644 (file)
@@ -391,11 +391,7 @@ app.Views.Front.App = Backbone.View.extend({
     },
 
     continue: function(){
-        // Confirm they are done and goto the next page
-        var isDone = confirm( 'Are you done?' );
-        if ( isDone ) {
-            window.location.href = nextPageUrl;
-        }
+        window.location.href = nextPageUrl;
     },
 
 });
index be928d8..8eeb9cd 100644 (file)
@@ -28,11 +28,7 @@ app.Views.Front.App = Backbone.View.extend({
     },
 
     continue: function(){
-        // Confirm they are done and goto the next page
-        var isDone = confirm( 'Are you done?' );
-        if ( isDone ) {
-            window.location.href = nextPageUrl;
-        }
+        window.location.href = nextPageUrl;
     },
 
 });