mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-02 00:52:19 +01:00
0e5d17d5f6
Conflicts: Gruntfile.js dist/css/bootstrap-theme.css dist/css/bootstrap-theme.css.map dist/css/bootstrap-theme.min.css dist/css/bootstrap.css dist/css/bootstrap.css.map dist/css/bootstrap.min.css dist/js/bootstrap.min.js docs/_data/glyphicons.yml docs/_includes/components/alerts.html docs/_includes/components/badges.html docs/_includes/components/breadcrumbs.html docs/_includes/components/button-dropdowns.html docs/_includes/components/button-groups.html docs/_includes/components/dropdowns.html docs/_includes/components/glyphicons.html docs/_includes/components/input-groups.html docs/_includes/components/jumbotron.html docs/_includes/components/labels.html docs/_includes/components/list-group.html docs/_includes/components/media.html docs/_includes/components/navbar.html docs/_includes/components/navs.html docs/_includes/components/page-header.html docs/_includes/components/pagination.html docs/_includes/components/panels.html docs/_includes/components/progress-bars.html docs/_includes/components/responsive-embed.html docs/_includes/components/thumbnails.html docs/_includes/components/wells.html docs/_includes/css/buttons.html docs/_includes/css/code.html docs/_includes/css/forms.html docs/_includes/css/grid.html docs/_includes/css/helpers.html docs/_includes/css/images.html docs/_includes/css/less.html docs/_includes/css/tables.html docs/_includes/css/type.html docs/_includes/customizer-variables.html docs/_includes/getting-started/accessibility.html docs/_includes/getting-started/disabling-responsiveness.html docs/_includes/getting-started/download.html docs/_includes/getting-started/whats-included.html docs/_includes/js/alerts.html docs/_includes/js/buttons.html docs/_includes/js/carousel.html docs/_includes/js/collapse.html docs/_includes/js/modal.html docs/_includes/js/overview.html docs/_includes/js/popovers.html docs/_includes/js/tabs.html docs/_includes/js/tooltips.html docs/_includes/nav/components.html docs/_includes/nav/javascript.html docs/_jade/customizer-variables.jade docs/_layouts/default.html docs/about.html docs/assets/css/docs.min.css docs/assets/css/src/docs.css docs/assets/js/customize.min.js docs/assets/js/raw-files.min.js docs/assets/js/src/customizer.js docs/customize.html docs/dist/css/bootstrap-theme.css.map docs/dist/css/bootstrap.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css less/glyphicons.less less/mixins/vendor-prefixes.less less/navbar.less less/popovers.less less/tables.less less/theme.less less/tooltip.less less/variables.less package.json scss/_carousel.scss scss/_close.scss scss/_forms.scss test-infra/npm-shrinkwrap.json
229 lines
8.2 KiB
JavaScript
229 lines
8.2 KiB
JavaScript
$(function () {
|
|
'use strict';
|
|
|
|
module('popover plugin')
|
|
|
|
test('should be defined on jquery object', function () {
|
|
ok($(document.body).popover, 'popover method is defined')
|
|
})
|
|
|
|
module('popover', {
|
|
setup: function () {
|
|
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
|
|
$.fn.bootstrapPopover = $.fn.popover.noConflict()
|
|
},
|
|
teardown: function () {
|
|
$.fn.popover = $.fn.bootstrapPopover
|
|
delete $.fn.bootstrapPopover
|
|
}
|
|
})
|
|
|
|
test('should provide no conflict', function () {
|
|
strictEqual($.fn.popover, undefined, 'popover was set back to undefined (org value)')
|
|
})
|
|
|
|
test('should return jquery collection containing the element', function () {
|
|
var $el = $('<div/>')
|
|
var $popover = $el.bootstrapPopover()
|
|
ok($popover instanceof $, 'returns jquery collection')
|
|
strictEqual($popover[0], $el[0], 'collection contains element')
|
|
})
|
|
|
|
test('should render popover element', function () {
|
|
var $popover = $('<a href="#" title="mdo" data-content="https://twitter.com/mdo">@mdo</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover('show')
|
|
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover removed')
|
|
})
|
|
|
|
test('should store popover instance in popover data object', function () {
|
|
var $popover = $('<a href="#" title="mdo" data-content="https://twitter.com/mdo">@mdo</a>').bootstrapPopover()
|
|
|
|
ok($popover.data('bs.popover'), 'popover instance exists')
|
|
})
|
|
|
|
test('should store popover trigger in popover instance data object', function () {
|
|
var $popover = $('<a href="#" title="ResentedHook">@ResentedHook</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover()
|
|
|
|
$popover.bootstrapPopover('show')
|
|
|
|
ok($('.popover').data('bs.popover'), 'popover trigger stored in instance data')
|
|
})
|
|
|
|
test('should get title and content from options', function () {
|
|
var $popover = $('<a href="#">@fat</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
title: function () {
|
|
return '@fat'
|
|
},
|
|
content: function () {
|
|
return 'loves writing tests (╯°□°)╯︵ ┻━┻'
|
|
}
|
|
})
|
|
|
|
$popover.bootstrapPopover('show')
|
|
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
equal($('.popover .popover-title').text(), '@fat', 'title correctly inserted')
|
|
equal($('.popover .popover-content').text(), 'loves writing tests (╯°□°)╯︵ ┻━┻', 'content correctly inserted')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
test('should not duplicate HTML object', function () {
|
|
var $div = $('<div/>').html('loves writing tests (╯°□°)╯︵ ┻━┻')
|
|
|
|
var $popover = $('<a href="#">@fat</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
content: function () {
|
|
return $div
|
|
}
|
|
})
|
|
|
|
$popover.bootstrapPopover('show')
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
equal($('.popover .popover-content').html(), $div, 'content correctly inserted')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
|
|
$popover.bootstrapPopover('show')
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
equal($('.popover .popover-content').html(), $div, 'content correctly inserted')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
test('should get title and content from attributes', function () {
|
|
var $popover = $('<a href="#" title="@mdo" data-content="loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻" >@mdo</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover()
|
|
.bootstrapPopover('show')
|
|
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
equal($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
|
|
equal($('.popover .popover-content').text(), 'loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻', 'content correctly inserted')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
|
|
test('should get title and content from attributes ignoring options passed via js', function () {
|
|
var $popover = $('<a href="#" title="@mdo" data-content="loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻" >@mdo</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
title: 'ignored title option',
|
|
content: 'ignored content option'
|
|
})
|
|
.bootstrapPopover('show')
|
|
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
equal($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
|
|
equal($('.popover .popover-content').text(), 'loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻', 'content correctly inserted')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
test('should respect custom template', function () {
|
|
var $popover = $('<a href="#">@fat</a>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
title: 'Test',
|
|
content: 'Test',
|
|
template: '<div class="popover foobar"><div class="popover-arrow"></div><div class="inner"><h3 class="title"/><div class="content"><p/></div></div></div>'
|
|
})
|
|
|
|
$popover.bootstrapPopover('show')
|
|
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
ok($('.popover').hasClass('foobar'), 'custom class is present')
|
|
|
|
$popover.bootstrapPopover('hide')
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
test('should destroy popover', function () {
|
|
var $popover = $('<div/>')
|
|
.bootstrapPopover({
|
|
trigger: 'hover'
|
|
})
|
|
.on('click.foo', $.noop)
|
|
|
|
ok($popover.data('bs.popover'), 'popover has data')
|
|
ok($._data($popover[0], 'events').mouseover && $._data($popover[0], 'events').mouseout, 'popover has hover event')
|
|
equal($._data($popover[0], 'events').click[0].namespace, 'foo', 'popover has extra click.foo event')
|
|
|
|
$popover.bootstrapPopover('show')
|
|
$popover.bootstrapPopover('destroy')
|
|
|
|
ok(!$popover.hasClass('in'), 'popover is hidden')
|
|
ok(!$popover.data('popover'), 'popover does not have data')
|
|
equal($._data($popover[0], 'events').click[0].namespace, 'foo', 'popover still has click.foo')
|
|
ok(!$._data($popover[0], 'events').mouseover && !$._data($popover[0], 'events').mouseout, 'popover does not have any events')
|
|
})
|
|
|
|
test('should render popover element using delegated selector', function () {
|
|
var $div = $('<div><a href="#" title="mdo" data-content="http://twitter.com/mdo">@mdo</a></div>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
selector: 'a',
|
|
trigger: 'click'
|
|
})
|
|
|
|
$div.find('a').click()
|
|
notEqual($('.popover').length, 0, 'popover was inserted')
|
|
|
|
$div.find('a').click()
|
|
equal($('.popover').length, 0, 'popover was removed')
|
|
})
|
|
|
|
test('should detach popover content rather than removing it so that event handlers are left intact', function () {
|
|
var $content = $('<div class="content-with-handler"><a class="btn btn-warning">Button with event handler</a></div>').appendTo('#qunit-fixture')
|
|
|
|
var handlerCalled = false
|
|
$('.content-with-handler .btn').click(function () {
|
|
handlerCalled = true
|
|
})
|
|
|
|
var $div = $('<div><a href="#">Show popover</a></div>')
|
|
.appendTo('#qunit-fixture')
|
|
.bootstrapPopover({
|
|
html: true,
|
|
trigger: 'manual',
|
|
container: 'body',
|
|
content: function () {
|
|
return $content
|
|
}
|
|
})
|
|
|
|
stop()
|
|
$div
|
|
.one('shown.bs.popover', function () {
|
|
$div
|
|
.one('hidden.bs.popover', function () {
|
|
$div
|
|
.one('shown.bs.popover', function () {
|
|
$('.content-with-handler .btn').click()
|
|
$div.bootstrapPopover('destroy')
|
|
ok(handlerCalled, 'content\'s event handler still present')
|
|
start()
|
|
})
|
|
.bootstrapPopover('show')
|
|
})
|
|
.bootstrapPopover('hide')
|
|
})
|
|
.bootstrapPopover('show')
|
|
})
|
|
})
|