Remove no longer needed substring - see dc7fba4bf

This commit is contained in:
Bryan Housel
2020-02-21 10:32:27 -05:00
parent fc0d87ce10
commit c0090929e0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@
context.init();
// disable boundaries (unless we have an explicit disable_features list)
var q = iD.utilStringQs(window.location.hash.substring(1));
var q = iD.utilStringQs(window.location.hash);
if (!q.hasOwnProperty('disable_features')) {
context.features().disable('boundaries');
}
+1 -1
View File
@@ -37,7 +37,7 @@
context.init();
// disable boundaries (unless we have an explicit disable_features list)
var q = iD.utilStringQs(window.location.hash.substring(1));
var q = iD.utilStringQs(window.location.hash);
if (!q.hasOwnProperty('disable_features')) {
context.features().disable('boundaries');
}