forked from Github-Mirrors/canaille
7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
$(function(){
|
|
$('.ui.dropdown').each(function(){
|
|
$(this).dropdown({"placeholder": $(this).attr("placeholder")});
|
|
});
|
|
$('.autofocus').focus();
|
|
$('*[title]').popup();
|
|
});
|