mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-16 20:30:09 -07:00
28 lines
523 B
JavaScript
28 lines
523 B
JavaScript
$(document).ready(function () {
|
|
$('.ui.dropdown')
|
|
.dropdown()
|
|
;
|
|
|
|
$('.image.load img')
|
|
.visibility({
|
|
type : 'image',
|
|
transition : 'fade in',
|
|
duration : 1000
|
|
})
|
|
;
|
|
|
|
$('.ui.rating')
|
|
.rating("disable")
|
|
;
|
|
|
|
$('.tabular.menu .item').tab();
|
|
|
|
$('.message .close')
|
|
.on('click', function() {
|
|
$(this)
|
|
.closest('.message')
|
|
.transition('fade')
|
|
;
|
|
})
|
|
;
|
|
}); |