mirror of
https://github.com/astefanutti/decktape.git
synced 2024-12-14 07:42:43 +03:00
38 lines
779 B
JavaScript
38 lines
779 B
JavaScript
function Deck(page) {
|
|
this.page = page;
|
|
}
|
|
|
|
Deck.prototype = {
|
|
|
|
getName : function() {
|
|
return "Deck JS";
|
|
},
|
|
|
|
isActive : function() {
|
|
return this.page.evaluate(function() {
|
|
return typeof $ === "function" && typeof $.deck === "function";
|
|
});
|
|
},
|
|
|
|
slideCount : function() {
|
|
return this.page.evaluate(function() {
|
|
return $.deck("getSlides").length;
|
|
});
|
|
},
|
|
|
|
nextSlide : function() {
|
|
this.page.evaluate(function() {
|
|
$.deck("next");
|
|
});
|
|
},
|
|
|
|
currentSlideIndex : function() {
|
|
return this.page.evaluate(function() {
|
|
return $.deck("getSlide").attr("id");
|
|
});
|
|
}
|
|
};
|
|
|
|
exports.create = function(page) {
|
|
return new Deck(page);
|
|
}; |