Lines Matching full:hitch
268 * @param {Object} scope the object to hitch the method to
273 var hitch = function(scope, method){
336 listen(instance, type, hitch(instance, "_dispatch", type));
603 hitch(this, 'errback', new Error('timeout')),
712 var enclosed = hitch.apply(window, arguments);
730 return this.addCallbacks(hitch.apply(window, arguments));
745 return this.addCallbacks(null, hitch.apply(window, arguments));
789 var func = hitch(this, function() {
1146 listen(el, 'load', hitch(el, '_dispatch', 'load'));
1167 instance.listen('message', hitch(this, '_handleMessage'));
1183 var sendLoadMsg = hitch(this, function(evt) {
1415 setTimeout(hitch(this, function(){
1483 // right now, so pass null instead. Will re-enable hitch()'d variant
1486 // CFInstance.postMessage = hitch(null, postMessageToDest, h);
1543 instance.postMessage = hitch(null, postMessageToDest, contentWindow);