This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
Radarr
mirror of
https://github.com/Radarr/Radarr
Watch
1
Star
0
Fork
You've already forked Radarr
0
Code
Issues
Releases
Wiki
Activity
b8827096b9
Radarr
/
UI
/
jQuery
/
TooltipBinder.js
11 lines
150 B
JavaScript
Raw
Normal View
History
Unescape
Escape
updated jshint to 2.1.3 single quotes
2013-06-22 06:24:24 +00:00
'use strict'
;
all tooltips are automatically converted to bootstrap.
2013-06-21 06:01:00 +00:00
define
(
[
'bootstrap'
]
,
function
(
)
{
form tooltips pop from right.
2013-07-14 06:06:18 +00:00
This should fix the sticky tooltip issues Lost some control over positioning based on parents, but we can add data attributes if required
2013-07-31 06:25:29 +00:00
$
(
'body'
)
.
tooltip
(
{
selector
:
'[title]'
all tooltips are automatically converted to bootstrap.
2013-06-21 06:01:00 +00:00
}
)
;
}
)
;