aboutsummaryrefslogtreecommitdiffstats
path: root/src/js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js')
-rw-r--r--src/js/views/locator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/views/locator.js b/src/js/views/locator.js
index e6a885d..8e067a9 100644
--- a/src/js/views/locator.js
+++ b/src/js/views/locator.js
@@ -42,7 +42,7 @@
this.failedLocation(details);
return;
}
- var percent = ( ( 20 - this.locateCount ) / 20 ) * 100;
+ var percent = ( this.locateCount / 20 ) * 100;
$('#progress-bar').css( 'width', percent + '%' );
this.locateCount++;
var that = this;