Browse Source

Expand on basic example

pull/2300/head
jlukic 9 years ago
parent
commit
bed2cda48b
1 changed files with 11 additions and 12 deletions
  1. 23
      examples/basic.html

23
examples/basic.html

@ -12,6 +12,17 @@
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
<script src="../dist/semantic.js"></script> <script src="../dist/semantic.js"></script>
<script>
$(document)
.ready(function() {
$('.ui.selection.dropdown').dropdown();
$('.ui.menu .ui.dropdown').dropdown({
on: 'hover'
});
})
;
</script>
</head> </head>
<body> <body>
@ -426,18 +437,6 @@
</div> </div>
</div> </div>
<script>
$(document)
.ready(function() {
$('.ui.selection.dropdown').dropdown();
$('.ui.menu .dropdown').dropdown({
on: 'hover'
});
})
;
</script>
</body> </body>
</html> </html>
Loading…
Cancel
Save