Lines Matching refs:buttonName

2392         var buttonName;
2395 for (buttonName in iconOverrideHash) {
2396 … iconClassesCopy[buttonName] = this.applyIconOverridePrefix(iconOverrideHash[buttonName]);
2414 Theme.prototype.getIconClass = function (buttonName) {
2415 var className = this.iconClasses[buttonName];
14495 $.each(buttonGroupStr.split(','), function (j, buttonName) {
14505 if (buttonName === 'title') {
14510 if ((customButtonProps = calendarCustomButtons[buttonName])) {
14517 (buttonIcon = theme.getIconClass(buttonName)) ||
14520 else if ((viewSpec = viewSpecManager.getViewSpec(buttonName))) {
14521 _this.viewsWithButtons.push(buttonName);
14523 calendar.changeView(buttonName);
14526 (buttonIcon = theme.getIconClass(buttonName)) ||
14529 else if (calendar[buttonName]) { // a calendar method
14531 calendar[buttonName]();
14533 (buttonText = calendarButtonTextOverrides[buttonName]) ||
14534 (buttonIcon = theme.getIconClass(buttonName)) ||
14535 (buttonText = calendarButtonText[buttonName]);
14540 'fc-' + buttonName + '-button',
14550 buttonAriaAttr = ' aria-label="' + buttonName + '"';
14622 Toolbar.prototype.activateButton = function (buttonName) {
14624 this.el.find('.fc-' + buttonName + '-button')
14628 Toolbar.prototype.deactivateButton = function (buttonName) {
14630 this.el.find('.fc-' + buttonName + '-button')
14634 Toolbar.prototype.disableButton = function (buttonName) {
14636 this.el.find('.fc-' + buttonName + '-button')
14641 Toolbar.prototype.enableButton = function (buttonName) {
14643 this.el.find('.fc-' + buttonName + '-button')