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:
authorTimo Besenreuther <timo.besenreuther@gmail.com>2013-04-11 11:12:50 +0400
committerTimo Besenreuther <timo.besenreuther@gmail.com>2013-04-11 11:12:50 +0400
commitc00d063d46b88e8ec89313010012e387a375a4e0 (patch)
tree87c5cc5d7a92e58709c231507904b3a9d6cd8077 /plugins/Overlay/templates
parent2fbfbf76be47fbc8a9c8d33872f03ce8308cbff3 (diff)
refs #3813 Overlay compatibility with latest jquery
Diffstat (limited to 'plugins/Overlay/templates')
-rw-r--r--plugins/Overlay/templates/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Overlay/templates/index.js b/plugins/Overlay/templates/index.js
index cc81659a43..0caaefe559 100644
--- a/plugins/Overlay/templates/index.js
+++ b/plugins/Overlay/templates/index.js
@@ -202,7 +202,7 @@ var Piwik_Overlay = (function () {
var optionMatchFound = false;
$select.find('option').each(function () {
if ($(this).val() == period + ';' + date) {
- $(this).attr('selected', 'selected');
+ $(this).prop('selected', true);
optionMatchFound = true;
}
});