Merge pull request #4707 from owncloud/use_on_instead_of_deprecated_bind

use on to add event listener instead of deprecated jquery bind
remotes/origin/stable6
Christopher 13 years ago
commit c2eaf7589d
  1. 3
      core/js/oc-requesttoken.js

@ -1,3 +1,4 @@
$(document).bind('ajaxSend', function(elm, xhr, s) {
$(document).on('ajaxSend',function(elm, xhr, s) {
xhr.setRequestHeader('requesttoken', oc_requesttoken);
});

Loading…
Cancel
Save