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

10 years ago
10 years ago
  1. ---
  2. layout : 'default'
  3. css : 'hotfix'
  4. title : 'Test Page'
  5. type : 'Library'
  6. ---
  7. <%- @partial('header') %>
  8. <!-- TEST JS HERE !-->
  9. <script>
  10. $(document).ready(function() {
  11. $.fn.modal.settings.debug = true;
  12. var $m = $('#modal');
  13. $m.modal({duration: 3000}).modal('show')
  14. setTimeout(function(){
  15. $m.modal('hide');
  16. }, 1500);
  17. });
  18. </script>
  19. <!-- TEST CSS HERE !-->
  20. <style type="text/css">
  21. </style>
  22. <div class="main container">
  23. <div class="ui modal" id="modal">
  24. hey
  25. </div>
  26. </div>
  27. </body>