From 345b3eee8c0146b67fb8631c21baa92a03daeec5 Mon Sep 17 00:00:00 2001 From: Foxandxss Date: Mon, 21 Dec 2015 14:13:06 +0100 Subject: [PATCH] chore(carousel): change images on demo --- src/carousel/docs/demo.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/carousel/docs/demo.js b/src/carousel/docs/demo.js index ccfd4754ed..828a92f30a 100644 --- a/src/carousel/docs/demo.js +++ b/src/carousel/docs/demo.js @@ -7,9 +7,8 @@ angular.module('ui.bootstrap.demo').controller('CarouselDemoCtrl', function ($sc $scope.addSlide = function() { var newWidth = 600 + slides.length + 1; slides.push({ - image: '//placekitten.com/' + newWidth + '/300', - text: ['More','Extra','Lots of','Surplus'][slides.length % 4] + ' ' + - ['Cats', 'Kittys', 'Felines', 'Cutes'][slides.length % 4], + image: '//lorempixel.com/' + newWidth + '/300', + text: ['Nice image','Awesome photograph','That is so cool','I love that'][slides.length % 4], id: currIndex++ }); };