Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 0b7e742

Browse files
committed
docs(carousel): make sure request is made to http
- Ensure request uses http protocol and not https potentially Closes #5359
1 parent dbe9e81 commit 0b7e742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/carousel/docs/demo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ angular.module('ui.bootstrap.demo').controller('CarouselDemoCtrl', function ($sc
77
$scope.addSlide = function() {
88
var newWidth = 600 + slides.length + 1;
99
slides.push({
10-
image: '//lorempixel.com/' + newWidth + '/300',
10+
image: 'http://lorempixel.com/' + newWidth + '/300',
1111
text: ['Nice image','Awesome photograph','That is so cool','I love that'][slides.length % 4],
1212
id: currIndex++
1313
});

0 commit comments

Comments
 (0)