2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03: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
+2 -2
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')
})