mirror of
https://github.com/discourse/discourse.git
synced 2025-02-19 09:12:46 +08:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
import autocomplete from 'discourse/lib/autocomplete';
|
|
|
|
export default {
|
|
name: "jquery-plugins",
|
|
initialize: function() {
|
|
|
|
// Settings for bootbox
|
|
bootbox.animate(false);
|
|
bootbox.backdrop(true);
|
|
|
|
// Initialize the autocomplete tool
|
|
$.fn.autocomplete = autocomplete;
|
|
}
|
|
};
|