angular-bootstrap-lightbox
Version:
An AngularJS lightbox built using UI Bootstrap Modal.
23 lines (19 loc) • 515 B
JavaScript
/**
* @namespace bootstrapLightbox
*/
angular.module('bootstrapLightbox', [
'ui.bootstrap'
]);
// optional dependencies
try {
angular.module('angular-loading-bar');
angular.module('bootstrapLightbox').requires.push('angular-loading-bar');
} catch (e) {}
try {
angular.module('ngTouch');
angular.module('bootstrapLightbox').requires.push('ngTouch');
} catch (e) {}
try {
angular.module('videosharing-embed');
angular.module('bootstrapLightbox').requires.push('videosharing-embed');
} catch (e) {}