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.
27 lines
284 B
27 lines
284 B
semantic.card = {};
|
|
|
|
// ready event
|
|
semantic.card.ready = function() {
|
|
|
|
// selector cache
|
|
var
|
|
$icon = $('.card .icon, .card .corner.label'),
|
|
handler
|
|
;
|
|
|
|
handler = {
|
|
|
|
|
|
};
|
|
|
|
$icon
|
|
.state()
|
|
;
|
|
|
|
};
|
|
|
|
|
|
// attach ready event
|
|
$(document)
|
|
.ready(semantic.card.ready)
|
|
;
|