23 lines
668 B
Plaintext
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>
|
|
|
|
|