mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.3 KiB
42 lines
2.3 KiB
12 years ago
|
$(function () {
|
||
|
|
||
|
module("bootstrap-carousel")
|
||
|
|
||
|
test("should be defined on jquery object", function () {
|
||
|
ok($(document.body).carousel, 'carousel method is defined')
|
||
|
})
|
||
|
|
||
|
test("should return element", function () {
|
||
|
ok($(document.body).carousel()[0] == document.body, 'document.body returned')
|
||
|
})
|
||
|
|
||
|
test("should not fire sliden when slide is prevented", function () {
|
||
|
$.support.transition = false
|
||
|
stop()
|
||
|
$('<div class="carousel"/>')
|
||
|
.bind('slide', function (e) {
|
||
|
e.preventDefault();
|
||
|
ok(true);
|
||
|
start();
|
||
|
})
|
||
|
.bind('slid', function () {
|
||
|
ok(false);
|
||
|
})
|
||
|
.carousel('next')
|
||
|
})
|
||
|
|
||
|
test("should fire slide event with relatedTarget", function () {
|
||
|
var template = '<div id="myCarousel" class="carousel slide"><div class="carousel-inner"><div class="item active"><img src="assets/img/bootstrap-mdo-sfmoma-01.jpg" alt=""><div class="carousel-caption"><h4>{{_i}}First Thumbnail label{{/i}}</h4><p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p></div></div><div class="item"><img src="assets/img/bootstrap-mdo-sfmoma-02.jpg" alt=""><div class="carousel-caption"><h4>{{_i}}Second Thumbnail label{{/i}}</h4><p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p></div></div><div class="item"><img src="assets/img/bootstrap-mdo-sfmoma-03.jpg" alt=""><div class="carousel-caption"><h4>{{_i}}Third Thumbnail label{{/i}}</h4><p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p></div></div></div><a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a><a class="right carousel-control" href="#myCarousel" data-slide="next">›</a></div>'
|
||
|
$.support.transition = false
|
||
|
stop()
|
||
|
$(template)
|
||
|
.on('slide', function (e) {
|
||
|
e.preventDefault();
|
||
|
ok(e.relatedTarget);
|
||
|
ok($(e.relatedTarget).hasClass('item'));
|
||
|
start();
|
||
|
})
|
||
|
.carousel('next')
|
||
|
})
|
||
|
|
||
|
})
|