Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit fafa93c

Browse files
authored
Merge pull request #15 from eea/develop
Refs #97410 - Fix jQuery.timer is undefined 7eba9aa
2 parents 06f8cf8 + fcece1e commit fafa93c

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

docs/HISTORY.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
10.8 - (2018-07-27)
5+
---------------------
6+
* Bug fix: jQuery.timer is undefined
7+
[avoinea refs #97410]
8+
49
10.7 - (2018-06-20)
510
---------------------
611
* Change: updated URLs pointing to eea.europa.eu with https://
@@ -488,4 +493,3 @@ Changelog
488493
1.0 - (2009-10-29)
489494
------------------
490495
* Initial release
491-

eea/jquery/plugins/galleryview/jquery.timers-1.1.2.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ jQuery.extend({
141141
});
142142

143143
jQuery(window).bind("unload", function() {
144-
jQuery.each(jQuery.timer.global, function(index, item) {
145-
jQuery.timer.remove(item);
146-
});
147-
});
144+
if(jQuery.timer !== undefined){
145+
jQuery.each(jQuery.timer.global, function(index, item) {
146+
jQuery.timer.remove(item);
147+
});
148+
}
149+
});

eea/jquery/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.7
1+
10.8

0 commit comments

Comments
 (0)