Skip to content

Commit 208728f

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 332eec0 commit 208728f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

src/kendo.button.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,12 @@
9191
options: {
9292
name: "Button",
9393
enable: true,
94-
enabled: true
94+
enabled: true,
95+
icon: "",
96+
iconClass: "",
97+
spriteCssClass: "",
98+
imageUrl: "",
99+
badge: null
95100
},
96101

97102
_isNativeButton: function() {

src/kendo.calendar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ var __meta__ = { // jshint ignore:line
118118

119119
that._viewWrapper();
120120

121-
if (that.options.footer) {
121+
if (that.options.hasFooter) {
122122
that._footer(that.footer);
123123
}
124124

@@ -236,15 +236,15 @@ var __meta__ = { // jshint ignore:line
236236
header: {
237237
template: CLASSIC_HEADER_TEMPLATE
238238
},
239-
footer: true,
239+
hasFooter: true,
240240
linksSelector: ".k-link",
241241
contentClasses: "k-content"
242242
},
243243
"modern": {
244244
header: {
245245
template: MODERN_HEADER_TEMPLATE
246246
},
247-
footer: false,
247+
hasFooter: false,
248248
linksSelector: ".k-button",
249249
contentClasses: "k-content k-calendar-content"
250250
}
@@ -266,7 +266,7 @@ var __meta__ = { // jshint ignore:line
266266

267267
that._viewWrapper();
268268

269-
if (that.options.footer) {
269+
if (that.options.hasFooter) {
270270
that._footer(that.footer);
271271
} else {
272272
that.element.find(".k-footer").hide();

0 commit comments

Comments
 (0)