Lines Matching refs:el

384 	  return arr.filter(function (el, idx) {  argument
385 return !matcher(el, idx);
575 return function (el) { argument
577 return el[key] === val;
742 function attr$1(el, name, val) { argument
745 return el.getAttribute(name);
750 return el.removeAttribute(name);
754 el.setAttribute(name, val);
756 return el;
795 function classes$1(el) { argument
796 return new ClassList$1(el);
806 function ClassList$1(el) { argument
807 if (!el || !el.nodeType) {
810 this.el = el;
811 this.list = el.classList;
833 this.el.className = arr.join(' ');
862 this.el.className = arr.join(' ');
935 var className = this.el.getAttribute('class') || '';
957 function clear$1(el) { argument
961 while (el.childNodes.length) {
962 c = el.childNodes[0];
963 el.removeChild(c);
966 return el;
988 function match(el, selector) { argument
989 if (!el || el.nodeType !== 1) return false;
990 if (vendor) return vendor.call(el, selector);
991 var nodes = el.parentNode.querySelectorAll(selector);
993 if (nodes[i] == el) return true;
1035 var bind_1 = function(el, type, fn, capture){ argument
1036 el[bind](prefix$6 + type, fn, capture || false);
1051 var unbind_1 = function(el, type, fn, capture){ argument
1052 el[unbind](prefix$6 + type, fn, capture || false);
1083 function bind$1(el, selector, type, fn, capture) { argument
1088 return componentEvent.bind(el, type, function (e) {
1092 fn.call(el, e);
1106 function unbind$1(el, type, fn, capture) { argument
1111 return componentEvent.unbind(el, type, fn, capture);
1203 var el = doc.createElement('html');
1204 el.innerHTML = html;
1205 return el.removeChild(el.lastChild);
1213 var el = doc.createElement('div');
1214 el.innerHTML = prefix + html + suffix;
1215 while (depth--) el = el.lastChild;
1218 if (el.firstChild == el.lastChild) {
1219 return el.removeChild(el.firstChild);
1224 while (el.firstChild) {
1225 fragment.appendChild(el.removeChild(el.firstChild));
1231 function query(selector, el) { argument
1232 el = el || document;
1234 return el.querySelector(selector);
1237 function all(selector, el) { argument
1238 el = el || document;
1240 return el.querySelectorAll(selector);
1243 function remove$2(el) { argument
1244 el.parentNode && el.parentNode.removeChild(el);
1457 function classes(el) { argument
1458 return new ClassList(el);
1461 function ClassList(el) { argument
1462 if (!el || !el.nodeType) {
1465 this.el = el;
1466 this.list = el.classList;
1492 if (defined(this.el.className.baseVal)) {
1493 this.el.className.baseVal = arr.join(' ');
1495 this.el.className = arr.join(' ');
1528 this.el.className.baseVal = arr.join(' ');
1601 var className = this.el.getAttribute('class') || '';
21634 forEach(self._overlays, function(el) { argument
21635 setVisible$1(el.htmlContainer, el.plane === e.plane);
21658 function setPosition$1(el, x, y) { argument
21659 assign(el.style, { left: x + 'px', top: y + 'px' });
21662 function setVisible$1(el, visible) { argument
21663 el.style.display = visible === false ? 'none' : '';
21666 function setTransform$1(el, transform) { argument
21668 el.style['transform-origin'] = 'top left';
21671 el.style[prefix + 'transform'] = transform;
34224 return a1.filter(function(el) { argument
34225 return a2.indexOf(el) !== -1;
46118 function setPosition(el, x, y) { argument
46119 assign(el.style, { left: x + 'px', top: y + 'px' });
46122 function setVisible(el, visible) { argument
46123 el.style.display = visible === false ? 'none' : '';
56437 return elements.every(function(el) { argument
56438 return is$1(el, type);
56850 function listen(el, selector, type, fn) { argument
56852 el: el,
56854 listener: delegate.bind(el, selector, type, fn)
56940 delegate.unbind(m.el, m.type, m.listener);