Files
sx-fc/app/views/origami/second_display/index.html.erb
Aung Kyaw Phyoe ab666e7f82 second display
2019-02-26 10:59:39 +06:30

23 lines
668 B
Plaintext

<div class="container-fluid" style="margin-top:-65px;">
<button type="button" class="hidden" id="s_reload">Reload</button>
<div class="slider" id="second_display_slider">
<%= render 'slider' %>
</div>
<div class="item hidden" id="second_display_items">
<%= render 'second_display' %>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
//html font-size for second display till 35px!
// document.getElementsByTagName( "html" )[0].style[ "font-size" ] = "35px";
$('#s_reload').on('click', function () {
window.location.href = '/origami/second_display';
});
});
</script>