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.
26 lines
415 B
26 lines
415 B
semantic.accordion = {};
|
|
|
|
// ready event
|
|
semantic.accordion.ready = function() {
|
|
|
|
// selector cache
|
|
var
|
|
$popup = $('.main .ui[data-content], .main .ui[data-html], .main i[data-content], .main i[data-html]'),
|
|
// alias
|
|
handler
|
|
;
|
|
$popup
|
|
.popup({
|
|
className: {
|
|
popup: 'ignored ui popup'
|
|
}
|
|
})
|
|
;
|
|
|
|
};
|
|
|
|
|
|
// attach ready event
|
|
$(document)
|
|
.ready(semantic.accordion.ready)
|
|
;
|