Lines Matching refs:fn

127     function bind(obj, fn) {  argument
129 return fn.apply(obj, arguments);
493 function on(depMap, name, fn) { argument
500 fn(defined[id]);
503 getModule(depMap).on(name, fn);
1324 function fn() { function
1331 return fn;
1719 req.nextTick = typeof setTimeout !== 'undefined' ? function (fn) {
1720 setTimeout(fn, 4);
1721 } : function (fn) { fn(); };
2084 $.fn.jPlayer = function( options ) {
2144 if(typeof $.fn.stop !== 'function') {
2145 $.fn.stop = function() {};
2505 (binding && $.isFunction(binding.fn)) &&
2510 binding.fn(f);
2648 fn: function(f) {
2658 fn: function(f) {
2666 fn: function(f) {
2672 fn: function(f) {
2678 fn: function(f) {
2684 fn: function(f) {
3272 $.each(this.css.jq, function(fn, jq) { argument
4411 $.each(this.options.cssSelector, function(fn, cssSel) { argument
4412 self._cssSelector(fn, cssSel);
4422 _cssSelector: function(fn, cssSel) { argument
4425 if($.jPlayer.prototype.options.cssSelector[fn]) {
4426 if(this.css.jq[fn] && this.css.jq[fn].length) {
4427 this.css.jq[fn].unbind(".jPlayer");
4429 this.options.cssSelector[fn] = cssSel;
4430 this.css.cs[fn] = this.options.cssSelectorAncestor + " " + cssSel;
4433 this.css.jq[fn] = $(this.css.cs[fn]);
4435 …this.css.jq[fn] = []; // To comply with the css.jq[fn].length check before its use. As of jQuery 1…
4438 if(this.css.jq[fn].length && this[fn]) {
4441 self[fn](e);
4448 this.css.jq[fn].bind("click.jPlayer", handler); // Using jPlayer namespace
4451 …if(cssSel && this.css.jq[fn].length !== 1) { // So empty strings do not generate the warning. ie.,…
4454 context: this.css.cs[fn],
4455 …ssage: $.jPlayer.warningMsg.CSS_SELECTOR_COUNT + this.css.jq[fn].length + " found for " + fn + " m…
4462 context: fn,
4638 $.each(value, function(fn, cssSel) { argument
4639 …self._cssSelector(fn, cssSel); // NB: The option is set inside this function, after further validi…