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
347 B

semantic.accordion = {};
// ready event
semantic.accordion.ready = function() {
// selector cache
var
$popup = $('.example .heart.icon'),
// alias
handler
;
$popup
.popup({
className: {
popup: 'ignored ui popup'
}
})
;
};
// attach ready event
$(document)
.ready(semantic.accordion.ready)
;