thedesk/app/js/common/modal.js

17 lines
692 B
JavaScript
Raw Normal View History

2018-01-28 23:22:43 +11:00
//モーダル・ドロップダウンの各種設定
$(document).ready(function(){
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
$('.modal').modal();
$('.dropdown-button').dropdown({
inDuration: 300,
outDuration: 225,
constrainWidth: false, // Does not change width of dropdown to that of the activator
2018-03-20 15:55:25 +11:00
hover: false, // Activate on hover
2018-01-28 23:22:43 +11:00
gutter: 0, // Spacing from edge
belowOrigin: false, // Displays dropdown below the button
alignment: 'left', // Displays dropdown with edge aligned to the left of button
stopPropagation: false // Stops event propagation
}
);
2018-03-20 15:55:25 +11:00
});