Files
DefinitelyTyped/types/jquery.prettyphoto/jquery.prettyphoto-tests.ts
2017-03-24 14:27:52 -07:00

30 lines
564 B
TypeScript

// JQUERY
$('#id').prettyPhoto();
$('#id').prettyPhoto({ animation_speed: 'fast' });
// JQUERYSTATIC
$.prettyPhoto.changeGalleryPage('next');
$.prettyPhoto.changeGalleryPage('previous');
$.prettyPhoto.changePage('next');
$.prettyPhoto.changePage('previous');
$.prettyPhoto.close();
$.prettyPhoto.open();
$.prettyPhoto.open('test.jpg', 'title', 'description');
$.prettyPhoto.open(['test1.jpg', 'test2.jpg'], ['title1', 'title2'], ['description1', 'description2']);
$.prettyPhoto.startSlideshow();
$.prettyPhoto.stopSlideshow();
$.prettyPhoto.version;