diff options
Diffstat (limited to 'core/src/jquery/tipsy.js')
-rw-r--r-- | core/src/jquery/tipsy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/jquery/tipsy.js b/core/src/jquery/tipsy.js index 75e90b1c060..0ae6ec83af0 100644 --- a/core/src/jquery/tipsy.js +++ b/core/src/jquery/tipsy.js @@ -32,12 +32,12 @@ $.fn.tipsy = function(argument) { if (typeof argument === 'object' && argument !== null) { // tipsy defaults - var options = { + const options = { placement: 'bottom', delay: { 'show': 0, 'hide': 0 }, trigger: 'hover', html: false, - container: 'body' + container: 'body', } if (argument.gravity) { switch (argument.gravity) { |