2016-02-25 05:24:31 +00:00
|
|
|
<?= Form::open(['class'=>'layout-relative dashboard-container']) ?>
|
|
|
|
|
<div id="dashReportContainer" class="report-container loading">
|
2016-02-13 21:19:34 +00:00
|
|
|
|
|
|
|
|
<!-- Loading -->
|
|
|
|
|
<div class="loading-indicator-container">
|
2016-05-25 19:20:26 +00:00
|
|
|
<div class="loading-indicator indicator-center">
|
2016-02-13 21:19:34 +00:00
|
|
|
<span></span>
|
2016-05-25 19:20:26 +00:00
|
|
|
<div>Loading...</div>
|
2016-02-13 21:19:34 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2014-05-14 13:24:20 +00:00
|
|
|
<?= Form::close() ?>
|
2016-02-13 21:19:34 +00:00
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
$(document).ready(function() {
|
2016-02-25 05:24:31 +00:00
|
|
|
$.request('onInitReportContainer').done(function(){
|
2016-02-25 08:04:59 +00:00
|
|
|
$('#dashReportContainer').removeClass('loading')
|
2016-02-25 05:24:31 +00:00
|
|
|
})
|
2016-02-13 21:19:34 +00:00
|
|
|
})
|
|
|
|
|
</script>
|