Star-crossed

Proxy Pattern

Dec 12th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ExecuteOrDelayUntilScriptLoaded(function () {
  2.         (function () {
  3.             var old_UploadFinishFunc = window.UploadFinishFunc;
  4.  
  5.             window.UploadFinishFunc = function (b, a) {
  6.         // DO SOME WORK HERE
  7.                 return old_UploadFinishFunc.apply(this, arguments);
  8.             }
  9.         })();
  10.     }, "dragdrop.js");
Advertisement
Add Comment
Please, Sign In to add comment