Clean up spaces, tabs, indentation, and bracket formatting

This commit is contained in:
Brian Miyaji
2021-11-10 15:41:40 +09:00
parent e58beb1201
commit 3dff686a00
285 changed files with 29638 additions and 24147 deletions

View File

@@ -1,24 +1,32 @@
jQuery(document).ready(function($){
jQuery( document ).ready(
function($){
// Tiptip
$(".sp-tip").tipTip({
delay: 200,
fadeIn: 100,
fadeOut: 100
});
$(".sp-desc-tip").tipTip({
delay: 200,
fadeIn: 100,
fadeOut: 100,
defaultPosition: 'right'
});
// Tiptip
$( ".sp-tip" ).tipTip(
{
delay: 200,
fadeIn: 100,
fadeOut: 100
}
);
$( ".sp-desc-tip" ).tipTip(
{
delay: 200,
fadeIn: 100,
fadeOut: 100,
defaultPosition: 'right'
}
);
// Chosen select
$(".chosen-select, #poststuff #post_author_override").chosen({
allow_single_deselect: true,
search_contains: true,
single_backstroke_delete: false,
disable_search_threshold: 10,
placeholder_text_multiple: localized_strings.none
});
});
// Chosen select
$( ".chosen-select, #poststuff #post_author_override" ).chosen(
{
allow_single_deselect: true,
search_contains: true,
single_backstroke_delete: false,
disable_search_threshold: 10,
placeholder_text_multiple: localized_strings.none
}
);
}
);