1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-28 01:30:11 -07:00
2017-05-18 15:32:29 +02:00

49 lines
964 B
JavaScript

$(document).ready(function(){
// $('.ui.dropdown')
// .dropdown('restore defaults')
// ;
// $('.select2.dropdown').select2({
// placeholder: 'Select theme',
// allowClear: true
// });
$('.image.load img')
.visibility({
type : 'image',
transition : 'fade in',
duration : 1000
})
;
$('.ui.rating')
.rating("disable")
;
$('.tabular.menu .item').tab();
$('.tabular.submenu .item').tab({
});
$('.message .close')
.on('click', function() {
$(this)
.closest('.message')
.transition('fade')
;
})
;
$('.item-info .download')
.popup({
popup : $('.download.popup'),
on: 'click',
inline: true
})
;
$('.ui.modal')
.modal('attach events', '.ui.open-modal.button', 'show')
;
});