Lines Matching refs:options

1827     function HitDragListener(component, options) {
1828 var _this = _super.call(this, options) || this;
1851 if (subjectEl && this.options.subjectCenter) {
2718 smallDayDateFormat: function (options) {
2719 return options.isRTL ?
2724 weekFormat: function (options) {
2725 return options.isRTL ?
2726 'w[ ' + options.weekNumberTitle + ']' :
2727 '[' + options.weekNumberTitle + ' ]w';
2730 smallWeekFormat: function (options) {
2731 return options.isRTL ?
2732 'w[' + options.weekNumberTitle + ']' :
2733 '[' + options.weekNumberTitle + ']w';
2737 function populateInstanceComputableOptions(options) {
2739 if (options[name] == null) {
2740 options[name] = func(options);
3439 function Scroller(options) {
3441 options = options || {};
3442 _this.overflowX = options.overflowX || options.overflow || 'auto';
3443 _this.overflowY = options.overflowY || options.overflow || 'auto';
3791 var _this = _super.call(this, null, viewSpec.options) || this;
3816 return this.options[name];
6079 function CoordCache(options) {
6082 this.els = $(options.els);
6083 this.isHorizontal = options.isHorizontal;
6084 this.isVertical = options.isVertical;
6085 this.forcedOffsetParentEl = options.offsetParent ? $(options.offsetParent) : null;
6274 function DragListener(options) {
6288 this.options = options || {};
6307 this.delay = util_1.firstDefined(extraOptions.delay, this.options.delay, 0);
6308 this.minDistance = util_1.firstDefined(extraOptions.distance, this.options.distance, 0);
6309 this.subjectEl = this.options.subjectEl;
6481 if (this.options[name]) {
6482 this.options[name].apply(this, args);
6494 this.options.scroll &&
7785 var options;
7792 options = {
7813options.right = moreWrap.offset().left + moreWrap.outerWidth() + 1; // +1 to be over cell border
7816 options.left = moreWrap.offset().left - 1; // -1 to be over cell border
7818 this.segPopover = new Popover_1.default(options);
9488 function MouseFollower(sourceEl, options) {
9492 this.options = options = options || {};
9494 …this.parentEl = options.parentEl ? $(options.parentEl) : sourceEl.parent(); // default to sourceEl…
9519 var revertDuration = this.options.revertDuration;
9551 .addClass(this.options.additionalClass || '')
9561 opacity: this.options.opacity || '',
9562 zIndex: this.options.zIndex
9648 function Popover(options) {
9651 this.options = options || {};
9676 var options = this.options;
9678 .addClass(options.className || '')
9684 .append(options.content)
9685 .appendTo(options.parentEl);
9690 if (options.autoHide) {
9712 var options = this.options;
9724 top = options.top || 0;
9725 if (options.left !== undefined) {
9726 left = options.left;
9728 else if (options.right !== undefined) {
9729 left = options.right - width; // derive the left value from the right value
9748 if (options.viewportConstrain !== false) {
9763 if (this.options[name]) {
9764 this.options[name].apply(this, Array.prototype.slice.call(arguments, 1));
14386 $.fn.fullCalendar = function (options) {
14394 if (typeof options === 'string') {
14395 if (options === 'getCalendar') {
14400 else if (options === 'destroy') { // don't warn if no calendar object
14409 else if ($.isFunction(calendar[options])) {
14410 singleRes = calendar[options].apply(calendar, args);
14414 … if (options === 'destroy') { // for the destroy method, must remove Calendar object data
14419 util_1.warn("'" + options + "' is an unknown FullCalendar method.");
14423 calendar = new Calendar_1.default(element, options);
14728 isRTL = util_1.firstDefined(// based on options computed so far, is direction RTL?
14868 spec.options = options_1.mergeOptions([
14877 locale_1.populateInstanceComputableOptions(spec.options);
14884 function queryButtonText(options) {
14885 var buttonText = options.buttonText || {};