Skip to content
Snippets Groups Projects
Commit 34ae1837 authored by bbaer's avatar bbaer
Browse files

polyfill for wkhtml

parent 7a85d3c0
No related branches found
No related tags found
1 merge request!251Develop
Pipeline #3186 passed
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
/* global $ */ /* global $ */
/* @depend TablesorterController.js */ /* @depend TablesorterController.js */
Function.prototype.bind = Function.prototype.bind || function (thisp) {
var fn = this;
return function () {
return fn.apply(thisp, arguments);
};
};
var QfqNS = QfqNS || {}; var QfqNS = QfqNS || {};
$(document).ready( function () { $(document).ready( function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment