Cross Reference:
xref
: /
ontohub
/
app
/
assets
/
javascripts
/
tooltips.js
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
tooltips.js revision 860ccc55684a5cbfed050ec17c6d9c145a8a9369
// Tipsy tooltip
$(
function
(){
$(
"button.help"
).
tooltip
({
placement
:
'right'
}).
click
(
function
(
event
) {
event
.
preventDefault
();
$(
this
).
closest
(
"form"
).
find
(
"input:visible"
).
first
().
focus
();
});
$(
'aside .info .error .help'
).
tooltip
({
placement
:
'bottom'
});
$(
"ul.formats a[title]"
).
tooltip
({
placement
:
'bottom'
})
})