You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
634 B
42 lines
634 B
---
|
|
layout : 'default'
|
|
css : 'hotfix'
|
|
|
|
title : 'Test Page'
|
|
type : 'Library'
|
|
---
|
|
<%- @partial('header') %>
|
|
|
|
<!-- TEST JS HERE !-->
|
|
<script>
|
|
$(document).ready(function() {
|
|
|
|
$.fn.modal.debug = true;
|
|
$('#modalOne').modal('show');
|
|
|
|
window.openTest = function() {
|
|
$('#modalTwo').modal('show');
|
|
}
|
|
|
|
});
|
|
</script>
|
|
|
|
<!-- TEST CSS HERE !-->
|
|
<style type="text/css">
|
|
</style>
|
|
<!--
|
|
<div class="main container"> -->
|
|
|
|
|
|
<!--
|
|
</div> -->
|
|
<div class="ui modal" id="modalOne">
|
|
FIRST MODAL WINDOW
|
|
<input type="button" value="+" onclick="openTest()" />
|
|
</div>
|
|
|
|
<div class="ui modal" id="modalTwo">
|
|
SECOND MODAL WINDOW
|
|
</div>
|
|
|
|
</body>
|