mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-02-11 16:50:21 +08:00
[#820] Reverted plugin js changes done by IntelliJ IDEA
This commit is contained in:
parent
059520795f
commit
7e2ff40898
@ -374,7 +374,7 @@
|
||||
svgHourText.addEventListener('click', this._onSelectHour.bind(this));
|
||||
}
|
||||
|
||||
svgClockElement.appendChild(svgHourCircle);
|
||||
svgClockElement.appendChild(svgHourCircle)
|
||||
svgClockElement.appendChild(svgHourText)
|
||||
}
|
||||
|
||||
@ -404,7 +404,7 @@
|
||||
svgHourText.addEventListener('click', this._onSelectHour.bind(this));
|
||||
}
|
||||
|
||||
svgClockElement.appendChild(svgHourCircle);
|
||||
svgClockElement.appendChild(svgHourCircle)
|
||||
svgClockElement.appendChild(svgHourText)
|
||||
}
|
||||
|
||||
@ -505,7 +505,7 @@
|
||||
var svgClockFace = this.createSVGElement("circle", {r: '192', fill: '#eee', stroke: '#bdbdbd', 'stroke-width': 2});
|
||||
var svgClockCenter = this.createSVGElement("circle", {r: '15', fill: '#757575'});
|
||||
|
||||
svgGElement.appendChild(svgClockFace);
|
||||
svgGElement.appendChild(svgClockFace)
|
||||
|
||||
if (isHour)
|
||||
{
|
||||
@ -523,9 +523,9 @@
|
||||
svgGElement.appendChild(svgMinuteHand);
|
||||
}
|
||||
|
||||
svgGElement.appendChild(svgClockCenter);
|
||||
svgGElement.appendChild(svgClockCenter)
|
||||
|
||||
svgElement.appendChild(svgGElement);
|
||||
svgElement.appendChild(svgGElement)
|
||||
|
||||
this.$dtpElement.find("#dtp-svg-clock").empty();
|
||||
this.$dtpElement.find("#dtp-svg-clock")[0].appendChild(svgElement);
|
||||
|
@ -77,7 +77,7 @@
|
||||
this.animations = {
|
||||
start: 'webkitAnimationStart oanimationstart MSAnimationStart animationstart',
|
||||
end: 'webkitAnimationEnd oanimationend MSAnimationEnd animationend'
|
||||
};
|
||||
}
|
||||
|
||||
if (typeof this.settings.offset == 'number') {
|
||||
this.settings.offset = {
|
||||
@ -87,9 +87,9 @@
|
||||
}
|
||||
|
||||
this.init();
|
||||
}
|
||||
};
|
||||
|
||||
$.extend(Notify.prototype, {
|
||||
$.extend(Notify.prototype, {
|
||||
init: function () {
|
||||
var self = this;
|
||||
|
||||
@ -145,8 +145,8 @@
|
||||
break;
|
||||
default:
|
||||
this.$ele.find('[data-notify="' + command +'"]').html(commands[command]);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
var posX = this.$ele.outerHeight() + parseInt(self.settings.spacing) + parseInt(self.settings.offset.y);
|
||||
self.reposition(posX);
|
||||
},
|
||||
@ -264,7 +264,7 @@
|
||||
|
||||
this.$ele.find('[data-notify="dismiss"]').on('click', function() {
|
||||
self.close();
|
||||
});
|
||||
})
|
||||
|
||||
this.$ele.mouseover(function(e) {
|
||||
$(this).data('data-hover', "true");
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,13 @@
|
||||
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
|
||||
require('../../js/transition.js');
|
||||
require('../../js/alert.js');
|
||||
require('../../js/button.js');
|
||||
require('../../js/carousel.js');
|
||||
require('../../js/collapse.js');
|
||||
require('../../js/dropdown.js');
|
||||
require('../../js/modal.js');
|
||||
require('../../js/tooltip.js');
|
||||
require('../../js/popover.js');
|
||||
require('../../js/scrollspy.js');
|
||||
require('../../js/tab.js');
|
||||
require('../../js/affix.js');
|
||||
require('../../js/transition.js')
|
||||
require('../../js/alert.js')
|
||||
require('../../js/button.js')
|
||||
require('../../js/carousel.js')
|
||||
require('../../js/collapse.js')
|
||||
require('../../js/dropdown.js')
|
||||
require('../../js/modal.js')
|
||||
require('../../js/tooltip.js')
|
||||
require('../../js/popover.js')
|
||||
require('../../js/scrollspy.js')
|
||||
require('../../js/tab.js')
|
||||
require('../../js/affix.js')
|
@ -55,7 +55,7 @@
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
};
|
||||
}
|
||||
(function( $, window, document, undefined ) {
|
||||
"use strict";
|
||||
|
||||
|
@ -1 +1 @@
|
||||
$.ender({moment: require('moment')});
|
||||
$.ender({ moment: require('moment') })
|
||||
|
@ -234,7 +234,7 @@
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
that.selectHighlighted($list);
|
||||
|
||||
return;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -626,8 +626,8 @@
|
||||
var i;
|
||||
|
||||
if ( entry === false ) {
|
||||
|
||||
} else if ( entry === true ) {
|
||||
return;
|
||||
} else if ( entry === true ) {
|
||||
|
||||
parsed.tooltips = [];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user