Add setup wizard

This commit is contained in:
Brian Miyaji
2017-03-11 14:25:48 +11:00
parent dfa5895549
commit 07693ebb5b
10 changed files with 1162 additions and 33 deletions

View File

@@ -0,0 +1,24 @@
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'
});
// 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
});
});