1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- ?>
- <div class="calendar-calendar"><div class="month-view">
- <table class="full">
- <thead>
- <tr>
- <?php foreach ($day_names as $cell): ?>
- <th class="<?php print $cell['class']; ?>">
- <?php print $cell['data']; ?>
- </th>
- <?php endforeach; ?>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ((array) $rows as $row) {
- print $row['data'];
- } ?>
- </tbody>
- </table>
- </div></div>
- <script>
- try {
-
- if ($.browser.msie ) {
- var multiday_height = $('tr.multi-day')[0].clientHeight;
- $('tr[iehint]').each(function(index) {
- var iehint = this.getAttribute('iehint');
-
- var height = this.clientHeight + (multiday_height * .8 * iehint);
- this.style.height = height + 'px';
- });
- }
- }catch(e){
-
- }
- </script>
|