Don't use .load() - it's deprecated now and removed in jQuery 3.x
This commit is contained in:
parent
4db65663e2
commit
96cdf7c93e
1 changed files with 1 additions and 1 deletions
|
@ -1233,7 +1233,7 @@ function rcube_kolab_notes_ui(settings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$(printwin).load(function(){
|
$(printwin).on('load', function() {
|
||||||
printwin.document.title = data.title;
|
printwin.document.title = data.title;
|
||||||
$('#notetitle', printwin.document).html(Q(data.title));
|
$('#notetitle', printwin.document).html(Q(data.title));
|
||||||
$('#notebody', printwin.document).html(data.description);
|
$('#notebody', printwin.document).html(data.description);
|
||||||
|
|
Loading…
Add table
Reference in a new issue