File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 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 ( ) {
Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments