Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
d06f79e2
Commit
d06f79e2
authored
Aug 26, 2015
by
Chris Rebert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grunt babel:dev
parent
3de3dac0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
js/dist/popover.js
js/dist/popover.js
+3
-3
js/dist/popover.js.map
js/dist/popover.js.map
+0
-0
js/dist/tooltip.js
js/dist/tooltip.js
+2
-2
js/dist/tooltip.js.map
js/dist/tooltip.js.map
+0
-0
No files found.
js/dist/popover.js
View file @
d06f79e2
...
@@ -104,10 +104,10 @@ var Popover = (function ($) {
...
@@ -104,10 +104,10 @@ var Popover = (function ($) {
var
tip
=
this
.
getTipElement
();
var
tip
=
this
.
getTipElement
();
var
title
=
this
.
getTitle
();
var
title
=
this
.
getTitle
();
var
content
=
this
.
_getContent
();
var
content
=
this
.
_getContent
();
var
titleElement
=
$
(
tip
).
find
(
Selector
.
TITLE
)[
0
]
;
var
$titleElement
=
$
(
tip
).
find
(
Selector
.
TITLE
)
;
if
(
titleElement
)
{
if
(
$
titleElement
)
{
titleElement
[
this
.
config
.
html
?
'
innerHTML
'
:
'
innerText
'
]
=
title
;
$titleElement
[
this
.
config
.
html
?
'
html
'
:
'
text
'
](
title
)
;
}
}
// we use append for html objects to maintain js events
// we use append for html objects to maintain js events
...
...
js/dist/popover.js.map
View file @
d06f79e2
This diff was suppressed by a .gitattributes entry.
js/dist/tooltip.js
View file @
d06f79e2
...
@@ -331,9 +331,9 @@ var Tooltip = (function ($) {
...
@@ -331,9 +331,9 @@ var Tooltip = (function ($) {
value
:
function
setContent
()
{
value
:
function
setContent
()
{
var
tip
=
this
.
getTipElement
();
var
tip
=
this
.
getTipElement
();
var
title
=
this
.
getTitle
();
var
title
=
this
.
getTitle
();
var
method
=
this
.
config
.
html
?
'
innerHTML
'
:
'
innerT
ext
'
;
var
method
=
this
.
config
.
html
?
'
html
'
:
'
t
ext
'
;
$
(
tip
).
find
(
Selector
.
TOOLTIP_INNER
)[
0
][
method
]
=
title
;
$
(
tip
).
find
(
Selector
.
TOOLTIP_INNER
)[
method
](
title
)
;
$
(
tip
).
removeClass
(
ClassName
.
FADE
).
removeClass
(
ClassName
.
IN
);
$
(
tip
).
removeClass
(
ClassName
.
FADE
).
removeClass
(
ClassName
.
IN
);
...
...
js/dist/tooltip.js.map
View file @
d06f79e2
This diff was suppressed by a .gitattributes entry.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment