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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2016-07-15 06:50:34 +0300
committermattab <matthieu.aubry@gmail.com>2016-07-15 06:50:34 +0300
commit2e6eea55eb54f57386a18e389ae23a5d6bf86b8c (patch)
tree9fe22d85697ee48771543493f01b4b6740aba7e4 /tests/javascript
parent37f49aef8fe2f48e817b8e60f43d49a3e4c49673 (diff)
Fix issue IE
Diffstat (limited to 'tests/javascript')
-rw-r--r--tests/javascript/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index 1c9a8b478a..afd155c578 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -3098,7 +3098,7 @@ function PiwikTest() {
function generateAnIframeInDocument() {
// Generate an iframe, and call the method inside the iframe to check it returns true
- var hostAndPath = $(location).attr('origin') + $(location).attr('pathname');
+ var hostAndPath = $(location).attr('pathname');
var iframe = document.createElement('iframe');
iframe.id = "iframeTesting";
iframe.style= "display : none";