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.
39 lines
502 B
39 lines
502 B
---
|
|
layout : 'default'
|
|
css : 'hotfix'
|
|
|
|
title : 'Test Page'
|
|
type : 'Library'
|
|
---
|
|
<%- @partial('header') %>
|
|
|
|
<!-- TEST JS HERE !-->
|
|
<script>
|
|
$(document).ready(function() {
|
|
|
|
|
|
$.fn.modal.settings.debug = true;
|
|
var $m = $('#modal');
|
|
$m.modal({duration: 3000}).modal('show')
|
|
setTimeout(function(){
|
|
$m.modal('hide');
|
|
}, 1500);
|
|
|
|
|
|
});
|
|
</script>
|
|
|
|
<!-- TEST CSS HERE !-->
|
|
<style type="text/css">
|
|
</style>
|
|
|
|
<div class="main container">
|
|
|
|
<div class="ui modal" id="modal">
|
|
hey
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|