diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1948bc771d65120aeea055857d39cc63b84a8c..6fcba6a70d9a66ab54695529f614d86b83608272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,7 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API' * Updated AngularJS from 1.2.28 to 1.4.3 ### Internal change -* Support for IE8 was dropped +* Support for IE8 was dropped. This affects only the Piwik UI, not the Piwik.js Tracker. * Required PHP version was changed from 5.3 to 5.4 ## Piwik 2.15.0 diff --git a/plugins/CoreHome/angularjs/ajax-form/ajax-form.controller.js b/plugins/CoreHome/angularjs/ajax-form/ajax-form.controller.js index 8a1f3b529c886f1aa21def98c212d1c79454d9e0..e1c60b0550350830a521d374fdb297494d045469 100644 --- a/plugins/CoreHome/angularjs/ajax-form/ajax-form.controller.js +++ b/plugins/CoreHome/angularjs/ajax-form/ajax-form.controller.js @@ -75,9 +75,9 @@ }); notification.scrollToNotification(); } - })['catch'](function (errorMessage) { + }).catch(function (errorMessage) { vm.errorPostResponse = errorMessage; - })['finally'](function () { + }).finally(function () { vm.isSubmitting = false; }); } diff --git a/plugins/CoreHome/angularjs/common/services/piwik-api.js b/plugins/CoreHome/angularjs/common/services/piwik-api.js index 0b708a1c22757f1b07df7df68b8a766b35f0f954..94951d2a30a7682ad3bd3ee07f4c6448179e050f 100644 --- a/plugins/CoreHome/angularjs/common/services/piwik-api.js +++ b/plugins/CoreHome/angularjs/common/services/piwik-api.js @@ -129,11 +129,11 @@ }, 'finally': function () { - return addAbortMethod(to['finally'].apply(to, arguments), deferred); + return addAbortMethod(to.finally.apply(to, arguments), deferred); }, 'catch': function () { - return addAbortMethod(to['catch'].apply(to, arguments), deferred); + return addAbortMethod(to.catch.apply(to, arguments), deferred); }, abort: function () { @@ -280,7 +280,7 @@ } deferred.resolve(response); - })['catch'](function () { + }).catch(function () { deferred.reject.apply(deferred, arguments); }); diff --git a/plugins/CoreHome/angularjs/siteselector/siteselector-model.service.js b/plugins/CoreHome/angularjs/siteselector/siteselector-model.service.js index 4b6dc8bc4b24a7c7aef5f43ec95c8285363c9352..1ded7cf69ac10dc302e323f4fd821aab6a91b125 100644 --- a/plugins/CoreHome/angularjs/siteselector/siteselector-model.service.js +++ b/plugins/CoreHome/angularjs/siteselector/siteselector-model.service.js @@ -92,7 +92,7 @@ if (angular.isDefined(response)) { return updateWebsitesList(response); } - })['finally'](function () { // .finally() is not IE8 compatible see https://github.com/angular/angular.js/commit/f078762d48d0d5d9796dcdf2cb0241198677582c + }).finally(function () { model.isLoading = false; model.currentRequest = null; }); diff --git a/plugins/CoreHome/javascripts/popover.js b/plugins/CoreHome/javascripts/popover.js index 3766bdad6640f93f1810ccfa96027d273c0d9438..aff7ed7ff9544e2146c421b9772a683b68311888 100644 --- a/plugins/CoreHome/javascripts/popover.js +++ b/plugins/CoreHome/javascripts/popover.js @@ -39,7 +39,7 @@ var Piwik_Popover = (function () { }, close: function (event, ui) { container.find('div.jqplot-target').trigger('piwikDestroyPlot'); - container[0].innerHTML = ''; // IE8 fix + container[0].innerHTML = ''; container.dialog('destroy').remove(); globalAjaxQueue.abort(); $('.ui-widget-overlay').off('click.popover'); diff --git a/plugins/CoreUpdater/templates/layout.twig b/plugins/CoreUpdater/templates/layout.twig index 142a36015eba433d3aafbbe9cfa9b357e0704343..bb9f33c12bc6e063aed321526bb304c3e062f3cf 100644 --- a/plugins/CoreUpdater/templates/layout.twig +++ b/plugins/CoreUpdater/templates/layout.twig @@ -36,8 +36,6 @@ {% include "@CoreHome/_favicon.twig" %} </head> -<!--[if lt IE 9 ]> -<body id="simple" ng-app="app" class="old-ie"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <body id="simple" ng-app="app"><!--<![endif]--> diff --git a/plugins/ExamplePlugin/javascripts/plugin.js b/plugins/ExamplePlugin/javascripts/plugin.js index 1a0d0dee7a032a7bee01c77055710e225f20ff4d..1f14f0afb7969dd6182461d2c118f7fd6c551f81 100644 --- a/plugins/ExamplePlugin/javascripts/plugin.js +++ b/plugins/ExamplePlugin/javascripts/plugin.js @@ -14,7 +14,7 @@ $(document).ready(function () { * disable_merged_assets = 1 */ - if('undefined' != (typeof console)) { /* IE8 has no console */ + if('undefined' != (typeof console)) { /* IE9 has no console */ console.log('Plugin file loaded'); } }); diff --git a/plugins/Installation/templates/layout.twig b/plugins/Installation/templates/layout.twig index 41edabf41e2aa6487d37a0774075f5b2adce0a35..1399f1c18012a73e4232062753c52b01577f7499 100644 --- a/plugins/Installation/templates/layout.twig +++ b/plugins/Installation/templates/layout.twig @@ -27,8 +27,6 @@ <script type="text/javascript" src="plugins/CoreHome/angularjs/piwikApp.js"></script> <script type="text/javascript" src="plugins/Installation/javascripts/installation.js"></script> </head> -<!--[if lt IE 9 ]> -<body ng-app="app" class="old-ie"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <body ng-app="app"><!--<![endif]--> diff --git a/plugins/Login/stylesheets/login.less b/plugins/Login/stylesheets/login.less index c47982f59b09a9ccf3d17f44f7aac0e3f8010f9c..80c5e6e87b8914a5b638ecd75eaedccaffaf338f 100644 --- a/plugins/Login/stylesheets/login.less +++ b/plugins/Login/stylesheets/login.less @@ -181,9 +181,4 @@ #piwik a { color: #CDCDCD; } - - /* IE < 9 will use this */ - body.old-ie .ie-hide { - display: none; - } } diff --git a/plugins/Morpheus/javascripts/piwikHelper.js b/plugins/Morpheus/javascripts/piwikHelper.js index cc6ae5dde5c6d3437f301f9d3218ad43a40042b5..a8048c9b51fd0d9e01d85872a38823464bd205ae 100644 --- a/plugins/Morpheus/javascripts/piwikHelper.js +++ b/plugins/Morpheus/javascripts/piwikHelper.js @@ -426,49 +426,6 @@ try { oldArc.call(this, x, y, r, sAngle, eAngle, clockwise); }; - //-------------------------------------- - // - // Array.reduce is not available in IE8 but used in Jqplot - // - //-------------------------------------- - if ('function' !== typeof Array.prototype.reduce) { - Array.prototype.reduce = function(callback, opt_initialValue){ - 'use strict'; - if (null === this || 'undefined' === typeof this) { - // At the moment all modern browsers, that support strict mode, have - // native implementation of Array.prototype.reduce. For instance, IE8 - // does not support strict mode, so this check is actually useless. - throw new TypeError( - 'Array.prototype.reduce called on null or undefined'); - } - if ('function' !== typeof callback) { - throw new TypeError(callback + ' is not a function'); - } - var index, value, - length = this.length >>> 0, - isValueSet = false; - if (1 < arguments.length) { - value = opt_initialValue; - isValueSet = true; - } - for (index = 0; length > index; ++index) { - if (this.hasOwnProperty(index)) { - if (isValueSet) { - value = callback(value, this[index], index, this); - } - else { - value = this[index]; - isValueSet = true; - } - } - } - if (!isValueSet) { - throw new TypeError('Reduce of empty array with no initial value'); - } - return value; - }; - } - // Fix jQuery UI dialogs scrolling when click on links with tooltips jQuery.ui.dialog.prototype._focusTabbable = $.noop; diff --git a/plugins/Morpheus/stylesheets/base/mixins.less b/plugins/Morpheus/stylesheets/base/mixins.less index 88ac7d0c4ddeb42bb8d9edc6a2a829608e87f7d7..b9e004d213420395b7829eb35a140ee62e3dd33b 100644 --- a/plugins/Morpheus/stylesheets/base/mixins.less +++ b/plugins/Morpheus/stylesheets/base/mixins.less @@ -56,7 +56,5 @@ .opacity(@opacity) { opacity: @opacity; - // IE8 filter - @opacity-ie: (@opacity * 100); filter: ~"alpha(opacity=@{opacity-ie})"; } \ No newline at end of file diff --git a/plugins/Morpheus/stylesheets/general/_utils.less b/plugins/Morpheus/stylesheets/general/_utils.less index 804012cb211f864e709fbebf961ff8d0f68675da..58a9579eff3e500807d1a9a1a1250b5f41577821 100644 --- a/plugins/Morpheus/stylesheets/general/_utils.less +++ b/plugins/Morpheus/stylesheets/general/_utils.less @@ -13,11 +13,6 @@ div.clear { overflow: hidden; } -/* IE < 9 will use this */ -body.old-ie .ie-hide { - display: none; -} - .centerLargeDiv { width: 850px; margin: auto; diff --git a/plugins/Morpheus/templates/layout.twig b/plugins/Morpheus/templates/layout.twig index 87cb86335627173ca920dc9a62056d624c50ac09..ec57b81b6e5f3955f183a322ddceda5f2528807e 100644 --- a/plugins/Morpheus/templates/layout.twig +++ b/plugins/Morpheus/templates/layout.twig @@ -30,9 +30,6 @@ <![endif]--> {% endblock %} </head> - <!--[if lt IE 9 ]> - <body id="{{ bodyId|default('') }}" ng-app="app" class="old-ie {{ bodyClass|default('') }}"> - <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <body id="{{ bodyId|default('') }}" ng-app="app" class="{{ bodyClass|default('') }}"> <!--<![endif]--> diff --git a/plugins/MultiSites/angularjs/dashboard/dashboard-model.service.js b/plugins/MultiSites/angularjs/dashboard/dashboard-model.service.js index 105ac323048e148b330120c0843fa81c6407c6d1..d90d0f0aec9b91a5a86b493008bd8dbb091f7db2 100644 --- a/plugins/MultiSites/angularjs/dashboard/dashboard-model.service.js +++ b/plugins/MultiSites/angularjs/dashboard/dashboard-model.service.js @@ -162,7 +162,7 @@ return piwikApi.fetch(params).then(function (response) { updateWebsitesList(response); - }, onError)['finally'](function () { + }, onError).finally(function () { model.isLoading = false; if (model.refreshInterval && model.refreshInterval > 0) { diff --git a/plugins/Overlay/client/client.js b/plugins/Overlay/client/client.js index 04b1f88f1390e5b9e8eaa8073d5fce79f61f75e0..75bd19f3b3842070d02c7df8edb6b88513e635a4 100644 --- a/plugins/Overlay/client/client.js +++ b/plugins/Overlay/client/client.js @@ -54,10 +54,7 @@ var Piwik_Overlay_Client = (function () { src: piwikRoot + 'index.php?module=Overlay&action=notifyParentIframe#' + window.location.href }).css({width: 0, height: 0, border: 0}); - // in some cases, calling append right away doesn't work in IE8 - $(document).ready(function () { - $('body').append(iframe); - }); + $('body').append(iframe); } } @@ -84,50 +81,6 @@ var Piwik_Overlay_Client = (function () { return el; } - /** Special treatment for some internet explorers */ - var ieStatusBarEventsBound = false; - - function handleIEStatusBar() { - if (navigator.appVersion.indexOf("MSIE 7.") == -1 - && navigator.appVersion.indexOf("MSIE 8.") == -1) { - // this is not IE8 or lower - return; - } - - // IE7/8 can't handle position:fixed so we need to do it by hand - statusBar.css({ - position: 'absolute', - right: 'auto', - bottom: 'auto', - left: 0, - top: 0 - }); - - var position = function () { - var scrollY = document.body.parentElement.scrollTop; - var scrollX = document.body.parentElement.scrollLeft; - statusBar.css({ - top: (scrollY + $(window).height() - statusBar.outerHeight()) + 'px', - left: (scrollX + $(window).width() - statusBar.outerWidth()) + 'px' - }); - }; - - position(); - - statusBar.css({width: 'auto'}); - if (statusBar.width() < 350) { - statusBar.width(350); - } else { - statusBar.width(statusBar.width()); - } - - if (!ieStatusBarEventsBound) { - ieStatusBarEventsBound = true; - $(window).resize(position); - $(window).scroll(position); - } - } - return { /** Initialize in-site analytics */ @@ -225,15 +178,10 @@ var Piwik_Overlay_Client = (function () { statusBar.show().append(item); - handleIEStatusBar(); - window.setTimeout(handleIEStatusBar, 100); - return function () { item.remove(); if (statusBar.children().size() == 0) { statusBar.hide(); - } else { - handleIEStatusBar(); } }; }, @@ -243,8 +191,6 @@ var Piwik_Overlay_Client = (function () { statusBar.find('.PIS_' + className).remove(); if (statusBar.children().size() == 0) { statusBar.hide(); - } else { - handleIEStatusBar(); } }, diff --git a/plugins/SitesManager/angularjs/sites-manager/sites-manager-admin-sites-model.js b/plugins/SitesManager/angularjs/sites-manager/sites-manager-admin-sites-model.js index ddfb3e53e3ca11a8c1b5cf1f32631a24c523f0de..628de72e736e805dfec5847da804837aa7077a72 100644 --- a/plugins/SitesManager/angularjs/sites-manager/sites-manager-admin-sites-model.js +++ b/plugins/SitesManager/angularjs/sites-manager/sites-manager-admin-sites-model.js @@ -102,7 +102,7 @@ setSites(sites); - }, onError)['finally'](function () { + }, onError).finally(function () { if (callback) { callback(); } diff --git a/plugins/UsersManager/stylesheets/usersManager.less b/plugins/UsersManager/stylesheets/usersManager.less index 949ea61d2dc70d32863ee5cfc6e1ace6f729bc2f..ed2dd7f3156a436d3da7daec05dead2892bc78e4 100644 --- a/plugins/UsersManager/stylesheets/usersManager.less +++ b/plugins/UsersManager/stylesheets/usersManager.less @@ -38,8 +38,4 @@ .sites_selector_container { padding-top: 0px; } -} - -.old-ie #sites.usersManager .sites_selector_title { - height: 30px; } \ No newline at end of file diff --git a/plugins/Widgetize/templates/iframe.twig b/plugins/Widgetize/templates/iframe.twig index 892960316a4e5738b7459ab1ee99ebfd8d8790e6..66556262b5a5b55dd9b76bafe13825c6a17d3883 100644 --- a/plugins/Widgetize/templates/iframe.twig +++ b/plugins/Widgetize/templates/iframe.twig @@ -12,8 +12,6 @@ <link rel="stylesheet" type="text/css" href="plugins/Morpheus/stylesheets/ieonly.css"/> <![endif]--> </head> - <!--[if lt IE 9 ]> - <body ng-app="app" class="old-ie"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <body ng-app="app"> <![endif]-->