Files
jspm-registry/test/tests/bootstrap.js
T

12 lines
303 B
JavaScript
Raw Normal View History

2014-02-15 19:54:43 +02:00
var $ = require('bootstrap');
require('bootstrap/css/bootstrap.css!');
var template = require('./bootstrap.html!text');
exports['modal test'] = function(done) {
$("#sandbox").html(template);
$('#myModal').on('shown.bs.modal', function() {
done();
});
$('#sandbox .btn').click();
2014-05-19 14:49:30 -07:00
done();
2014-02-15 19:54:43 +02:00
}