11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
|
|
$(function() {
|
|
|
|
// Cloning the master page
|
|
for (i = 1; i < nb_page; i++){
|
|
$("#master-page").clone().attr("id","page-"+i).insertBefore($("#master-page"));
|
|
}
|
|
$("#master-page").attr("data-width", $(".paper:first-child").width()).hide();
|
|
|
|
});
|