aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scenario/Application.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scenario/Application.js b/src/scenario/Application.js
index 9d05aad0..988dae90 100644
--- a/src/scenario/Application.js
+++ b/src/scenario/Application.js
@@ -50,7 +50,7 @@ angular.scenario.Application.prototype.getWindow_ = function() {
angular.scenario.Application.prototype.checkUrlStatus_ = function(url, callback) {
var self = this;
_jQuery.ajax({
- url: url,
+ url: url.replace(/#.*/, ''), //IE encodes and sends the url fragment, so we must strip it
type: 'HEAD',
complete: function(request) {
if (request.status < 200 || request.status >= 300) {