1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 17:32:41 +02:00

Change Twitter links to use https.

This commit is contained in:
XhmikosR
2014-10-07 15:28:41 +03:00
parent b93ebeaa9c
commit 909a178362
6 changed files with 49 additions and 49 deletions

View File

@@ -30,7 +30,7 @@ $(function () {
})
test('should render popover element', function () {
var $popover = $('<a href="#" title="mdo" data-content="http://twitter.com/mdo">@mdo</a>')
var $popover = $('<a href="#" title="mdo" data-content="https://twitter.com/mdo">@mdo</a>')
.appendTo('#qunit-fixture')
.bootstrapPopover('show')
@@ -40,7 +40,7 @@ $(function () {
})
test('should store popover instance in popover data object', function () {
var $popover = $('<a href="#" title="mdo" data-content="http://twitter.com/mdo">@mdo</a>').bootstrapPopover()
var $popover = $('<a href="#" title="mdo" data-content="https://twitter.com/mdo">@mdo</a>').bootstrapPopover()
ok($popover.data('bs.popover'), 'popover instance exists')
})