Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRory Gibson <rg.rorygibson@gmail.com>2015-07-07 11:00:41 +0300
committerRory Gibson <rg.rorygibson@gmail.com>2015-07-07 11:00:41 +0300
commit36e674ed6bebb7a6580a552cea5b982600f847ca (patch)
tree1df23cc2aaa13dcaf1fda4572529cdd2f042b422
parent5019c4109f99ce0cbadfdad29404b47b9a2edb08 (diff)
Use indexOf instead of startsWith
-rw-r--r--assets/js/scripts.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/assets/js/scripts.js b/assets/js/scripts.js
index 3d471ec..72ca12c 100644
--- a/assets/js/scripts.js
+++ b/assets/js/scripts.js
@@ -96,12 +96,13 @@ jQuery(function($) {
//if url starts with http:// and currentState.url starts with
// https://, replace the protocol in url
- if(url.startsWith("http://"))
+ if (url.indexOf("http://", 0) === 0)
{
var urlNoProt = url.replace(/.*?:\/\//g, "");
var curProt = currentState.url.split("/")[0];
url = curProt + "//" + urlNoProt;
}
+
// If the requested url is not the current states url push
// the new state and make the ajax call.
if (url !== currentState.url.replace(/\/$/, "")) {