Lines Matching refs:hit

1871         var hit;
1874 hit = this.queryHit(util_1.getEvX(ev), util_1.getEvY(ev));
1877 if (hit) {
1878 this.handleHitOver(hit);
1883 var hit;
1885 hit = this.queryHit(util_1.getEvX(ev), util_1.getEvY(ev));
1886 if (!isHitsEqual(hit, this.hit)) { // a different hit than before?
1887 if (this.hit) {
1890 if (hit) {
1891 this.handleHitOver(hit);
1901 HitDragListener.prototype.handleHitOver = function (hit) {
1902 var isOrig = isHitsEqual(hit, this.origHit);
1903 this.hit = hit;
1904 this.trigger('hitOver', this.hit, isOrig, this.origHit);
1908 if (this.hit) {
1909 this.trigger('hitOut', this.hit);
1911 this.hit = null;
1916 if (this.hit) {
1917 this.trigger('hitDone', this.hit);
1924 this.hit = null;
7519 DayGrid.prototype.getHitFootprint = function (hit) {
7520 var range = this.getCellRange(hit.row, hit.col);
7524 DayGrid.prototype.getHitEl = function (hit) {
7525 return this.getCellEl(hit.row, hit.col);
7849 segs[i].hit = this.getCellHit(row, col);
10355 var hit;
10357 hit = childrenByUid[uid].queryHit(leftOffset, topOffset);
10358 if (hit) {
10362 return hit;
10364 DateComponent.prototype.getSafeHitFootprint = function (hit) {
10365 var footprint = this.getHitFootprint(hit);
10371 DateComponent.prototype.getHitFootprint = function (hit) {
10376 DateComponent.prototype.getHitEl = function (hit) {
11611 hitOver: function (hit) {
11613 … var hitFootprint = hit.component.getSafeHitFootprint(hit); // hit might not belong to this grid
11829 hitOver: function (hit, isOrig, origHit) {
11832 var hitFootprint = component.getSafeHitFootprint(hit);
12085 hitOver: function (hit, isOrig, origHit) {
12091 if (seg.hit) {
12092 origHit = seg.hit;
12096 footprint = hit.component.getSafeHitFootprint(hit);
12286 hitOver: function (hit, isOrig, origHit) {
12291 hitFootprint = component.getSafeHitFootprint(hit);
12403 hitOver: function (hit, isOrig, origHit) {
12630 AgendaView.prototype.getHitFootprint = function (hit) {
12632 return hit.component.getHitFootprint(hit);
12634 AgendaView.prototype.getHitEl = function (hit) {
12636 return hit.component.getHitEl(hit);
13188 TimeGrid.prototype.getHitFootprint = function (hit) {
13189 var start = this.getCellDate(0, hit.col); // row=0
13190 var time = this.computeSnapTime(hit.snap); // pass in the snap-index
13201 TimeGrid.prototype.getHitEl = function (hit) {
13202 return this.colEls.eq(hit.col);