Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 5, 2014
2 parents 79fde5e + 57b4f26 commit 695a630
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions js/foundation-datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1081,15 +1081,23 @@
'</tr>'+
'</thead>',
contTemplate: '<tbody><tr><td colspan="7"></td></tr></tbody>',
footTemplate: '<tfoot><tr><th colspan="7" class="today"></th></tr></tfoot>'
footTemplate: '<tfoot><tr><th colspan="7" class="today"></th></tr></tfoot>',
headTemplateDays: '<thead>'+
'<tr>'+
'<th class="prev"><i class="fa fa-chevron-left fi-arrow-left"/></th>'+
'<th colspan="5" class="date-switch"></th>'+
'<th class="next"><i class="fa fa-chevron-right fi-arrow-right"/></th>'+
'</tr>'+
'</thead>',
footTemplateDays: '<tfoot><tr><th colspan="7" class="today"></th></tr></tfoot>'
};
DPGlobal.template = '<div class="datepicker">'+

'<div class="datepicker-days">'+
'<table class=" table-condensed">'+
DPGlobal.headTemplate+
DPGlobal.headTemplateDays+
'<tbody></tbody>'+
DPGlobal.footTemplate+
DPGlobal.footTemplateDays+
'</table>'+
'</div>'+
'<div class="datepicker-months">'+
Expand Down

0 comments on commit 695a630

Please sign in to comment.