mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
20 lines
440 B
JavaScript
20 lines
440 B
JavaScript
jQuery(document).ready(function($) {
|
|
|
|
var pdfembPagesViewer = PDFEMB_NS.pdfembPagesViewer;
|
|
|
|
var pdfembPagesViewerBasic = function () {
|
|
pdfembPagesViewer.apply(this, arguments);
|
|
};
|
|
|
|
pdfembPagesViewerBasic.prototype = new pdfembPagesViewer();
|
|
|
|
PDFEMB_NS.pdfembPagesViewerUsable = pdfembPagesViewerBasic;
|
|
|
|
});
|
|
|
|
PDFEMB_NS.pdfembGetPDF = function(url, callback) {
|
|
|
|
callback(url, false);
|
|
|
|
};
|