Libs/jQuery

* updated to 1.12.4 (plus compatibility changes in affected javascripts)
 * fixed double escapes on featuredbox text
 * fixed rogue whitespace
This commit is contained in:
Sarjuuk
2017-02-11 15:29:02 +01:00
parent d0f64fe66c
commit ca0e57b99c
11 changed files with 25 additions and 167 deletions

View File

@@ -3379,8 +3379,8 @@ var Markup = {
this.inited = true;
$('[data-highlight]')
.live('mouseenter', function() {
$(function () {
$(document).delegate('[data-highlight]', 'mouseenter', function() {
var _ = $(this).attr('data-highlight').split(':');
if(_.length != 2)
@@ -3399,6 +3399,7 @@ var Markup = {
elem.selectionStart = start;
elem.selectionEnd = start;
});
});
}
},