Lines Matching refs:self

2515   ? window : typeof self != 'undefined' && self.Math == Math ? self
13670 var self = IObject(O);
13672 var length = toLength(self.length);
13676 for (;length > index; index++) if (NO_HOLES || index in self) {
13677 val = self[index];
31837self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
31894self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
32256self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
32672self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
34860self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
34961self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
35276self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
35658self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
35723self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
36570self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
37243self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
37886self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
38909self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
41226self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
42248self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
42704self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
43583self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
43644self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
43717self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
44397self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
45404self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
45465self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
45538self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
46779self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't…
50332 var self = this,
50333 opts = self.config(options);
50335 self._onMouseDown = function(e)
50337 if (!self._v) {
50348self.setDate(new Date(target.getAttribute('data-pika-year'), target.getAttribute('data-pika-month'…
50351 self.hide();
50359 self.prevMonth();
50362 self.nextMonth();
50374 self._c = true;
50378 self._onChange = function(e)
50386 self.gotoMonth(target.value);
50389 self.gotoYear(target.value);
50393 self._onKeyChange = function(e)
50397 if (self.isVisible()) {
50406 self.adjustDate('subtract', 1);
50409 self.adjustDate('subtract', 7);
50412 self.adjustDate('add', 1);
50415 self.adjustDate('add', 7);
50421 self._onInputChange = function(e)
50425 if (e.firedBy === self) {
50436 self.setDate(date);
50438 if (!self._v) {
50439 self.show();
50443 self._onInputFocus = function()
50445 self.show();
50448 self._onInputClick = function()
50450 self.show();
50453 self._onInputBlur = function()
50464 if (!self._c) {
50465 self._b = sto(function() {
50466 self.hide();
50469 self._c = false;
50472 self._onClick = function(e)
50483 addEvent(target, 'change', self._onChange);
50492 if (self._v && target !== opts.trigger && pEl !== opts.trigger) {
50493 self.hide();
50497 self.el = document.createElement('div');
50498self.el.className = 'pika-single' + (opts.isRTL ? ' is-rtl' : '') + (opts.theme ? ' ' + opts.theme…
50500 addEvent(self.el, 'mousedown', self._onMouseDown, true);
50501 addEvent(self.el, 'touchend', self._onMouseDown, true);
50502 addEvent(self.el, 'change', self._onChange);
50503 addEvent(document, 'keydown', self._onKeyChange);
50507 opts.container.appendChild(self.el);
50509 document.body.appendChild(self.el);
50511 opts.field.parentNode.insertBefore(self.el, opts.field.nextSibling);
50513 addEvent(opts.field, 'change', self._onInputChange);
50529 self.setDate(defDate, true);
50531 self.gotoDate(defDate);
50534 self.gotoDate(new Date());
50539 self.el.className += ' is-bound';
50540 addEvent(opts.trigger, 'click', self._onInputClick);
50541 addEvent(opts.trigger, 'focus', self._onInputFocus);
50542 addEvent(opts.trigger, 'blur', self._onInputBlur);