mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-26 01:18:15 +00:00
added jquery bind version for ie
This commit is contained in:
parent
f78a0b8954
commit
49ba9879f2
3 changed files with 9 additions and 4 deletions
|
|
@ -137,8 +137,9 @@ CloudClient.Utils = (function(){
|
|||
$.ajax(pParams);
|
||||
};
|
||||
|
||||
this.bind = function(pFunction, pObject){
|
||||
return pFunction.bind(pObject);
|
||||
/* setting function context (this) */
|
||||
this.bind = function(pFunction, pContext){
|
||||
return pFunction.bind(pContext);
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue