Skip to content
Snippets Groups Projects
Commit bd85e8ea authored by Robert Speicher's avatar Robert Speicher
Browse files

Fix default tooltip placement

parent c74b49c2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -140,8 +140,8 @@ $ ->
# Place the logo tooltip on the right when collapsed, bottom when expanded
$el.parents('header').hasClass('header-collapsed') and 'right' or 'bottom'
else
# Otherwise use the data-placement attribute like normal
$el.data('placement')
# Otherwise use the data-placement attribute, or 'bottom' if undefined
$el.data('placement') or 'bottom'
})
 
# Form submitter
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment