mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-20 17:54:23 +01:00
wait for window load event before positioning images, doi
This commit is contained in:
parent
b781f6ca59
commit
d9cbcfc20d
@ -312,14 +312,6 @@ img.large-bird {
|
|||||||
opacity: .1;
|
opacity: .1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Media grid images
|
|
||||||
--------------------------------------------------- */
|
|
||||||
.media-grid img {
|
|
||||||
height: 150px;
|
|
||||||
width: 210px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Pretty Print
|
/* Pretty Print
|
||||||
-------------------------------------------------- */
|
-------------------------------------------------- */
|
||||||
pre.prettyprint {
|
pre.prettyprint {
|
||||||
|
@ -48,15 +48,16 @@ $(document).ready(function(){
|
|||||||
// POSITION STATIC TWIPSIES
|
// POSITION STATIC TWIPSIES
|
||||||
// ========================
|
// ========================
|
||||||
|
|
||||||
$(".twipsies a").each(function () {
|
$(window).load(function () {
|
||||||
$(this)
|
$(".twipsies a").each(function () {
|
||||||
.twipsy({
|
$(this)
|
||||||
live: false
|
.twipsy({
|
||||||
, placement: $(this).attr('title')
|
live: false
|
||||||
, trigger: 'manual'
|
, placement: $(this).attr('title')
|
||||||
, offset: 2
|
, trigger: 'manual'
|
||||||
|
, offset: 2
|
||||||
|
})
|
||||||
|
.trigger('twipsy:show')
|
||||||
})
|
})
|
||||||
.trigger('twipsy:show')
|
})
|
||||||
})
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user