Lines Matching refs:o

616 						var o = null;
638 o = this.get_parent(e.currentTarget);
639 if(o && o.id !== '#') { this.get_node(o, true).children('.jstree-anchor').focus(); }
644 o = this.get_prev_dom(e.currentTarget);
645 if(o && o.length) { o.children('.jstree-anchor').focus(); }
650 …this.open_node(e.currentTarget, function (o) { this.get_node(o, true).children('.jstree-anchor').f… argument
653 o = this.get_node(e.currentTarget, true).children('.jstree-children')[0];
654 if(o) { $(this._firstChild(o)).children('.jstree-anchor').focus(); }
659 o = this.get_next_dom(e.currentTarget);
660 if(o && o.length) { o.children('.jstree-anchor').focus(); }
667 o = this._firstChild(this.get_container_ul()[0]);
668 if(o) { $(o).children('.jstree-anchor').filter(':visible').focus(); }
2484 this.load_node(obj, function (o, ok) { argument
2485 …return ok ? this.open_node(o, callback, animation) : (callback ? callback.call(this, o, false) : f…
2815 var o = this.get_node(obj).id,
2822 if(p[i] === o) {
2828 if(c || p[i] === o || p[i] === l) {
2866 var o = this.element.find('.jstree-hovered'), t = this.element;
2867 if(o && o.length) { this.dehover_node(o); }
3250 this.load_node('#', function (o, s) { argument
3984 var tmp = [], o, t1, t2;
3986 o = this.get_node(obj[t1]);
3987 if(o && o.id && o.id !== '#') { tmp.push(o); }
4011 var tmp = [], o, t1, t2;
4013 o = this.get_node(obj[t1]);
4014 if(o && o.id && o.id !== '#') { tmp.push(o); }
4396 var a = [], i, j, l, o = {};
4398 if(o[array[i]] === undefined) {
4400 o[array[i]] = true;
4783 …var i, j, k, l, o = {}, m = this._model.data, t = this.settings.checkbox.tie_selection, s = this._…
4787 if(o[m[s[i]].parents[k]] === undefined && m[s[i]].parents[k] !== '#') {
4788 o[m[s[i]].parents[k]] = true;
4800 if(o[tmp.id] === undefined && tmp.id !== '#') {
4801 o[tmp.id] = true;
4805 if(o[tmp.parents[k]] === undefined && tmp.parents[k] !== '#') {
4806 o[tmp.parents[k]] = true;
4816 if(o[tmp2.id] === undefined && tmp2.id !== '#') {
4817 o[tmp2.id] = true;
4821 if(o[tmp2.parents[k]] === undefined && tmp2.parents[k] !== '#') {
4822 o[tmp2.parents[k]] = true;
5207 items : function (o, cb) { // Could be an object directly argument
5405 o = false,
5408 o = a.offset();
5409 x = o.left;
5410 y = o.top + this._data.core.li_height;
5499 _parse : function (o, is_callback) { argument
5500 if(!o) { return false; }
5510 $.each(o, function (i, val) {
5552 _show_submenu : function (o) { argument
5553 o = $(o);
5554 if(!o.length || !o.children("ul").length) { return; }
5555 var e = o.children("ul"),
5556 x = o.offset().left + o.outerWidth(),
5557 y = o.offset().top,
5564 o[x - (w + 10 + o.outerWidth()) < 0 ? "addClass" : "removeClass"]("vakata-context-left");
5567 o[x + w + 10 > dw ? "addClass" : "removeClass"]("vakata-context-right");
5575 var o, e, x, y, w, h, dw, dh, cond = true;
5589 o = reference.offset();
5590 vakata_context.position_x = o.left + reference.outerHeight();
5591 vakata_context.position_y = o.top;
5706 var o = null;
5723o = vakata_context.element.find("ul:visible").addBack().last().children(".vakata-context-hover").r…
5724 …if(!o.length) { o = vakata_context.element.find("ul:visible").addBack().last().children("li:not(.v…
5725 o.addClass("vakata-context-hover").children('a').focus();
5739o = vakata_context.element.find("ul:visible").addBack().last().children(".vakata-context-hover").r…
5740 …if(!o.length) { o = vakata_context.element.find("ul:visible").addBack().last().children("li:not(.v…
5741 o.addClass("vakata-context-hover").children('a').focus();
5909 tmp, l, t, h, p, i, o, ok, t1, t2, op, ps, pr, ip, tm;
5940 o = ['b', 'i', 'a'];
5943 o = ['a', 'i', 'b'];
5946 o = rel > h / 2 ? ['i', 'a', 'b'] : ['i', 'b', 'a'];
5948 $.each(o, function (j, v) {
5995 o = true;
5999 if(o === true) { return; }
6223 var t = $(this), o = t.offset();
6225 …if(o.top + t.height() - e.pageY < $.vakata.dnd.settings.scroll_proximity) { vakata_dnd.scroll_t = …
6226 if(e.pageY - o.top < $.vakata.dnd.settings.scroll_proximity) { vakata_dnd.scroll_t = -1; }
6229 …if(o.left + t.width() - e.pageX < $.vakata.dnd.settings.scroll_proximity) { vakata_dnd.scroll_l = …
6230 … if(e.pageX - o.left < $.vakata.dnd.settings.scroll_proximity) { vakata_dnd.scroll_l = -1; }
6468 var i, j, f, r = this._data.search.res, s = [], o = $();
6477o = s.length ? $(this.element[0].querySelectorAll('#' + $.map(s, function (v) { return "0123456789…
6480 o = o.add(this._data.search.dom);
6481 o.parentsUntil(".jstree").addBack().show()