Skip to content

Commit

Permalink
Put count param in default link to revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Nov 11, 2024
1 parent 1ad8859 commit 33de6ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrollHubEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class EditorApp {
updateFooterLinks() {
const { folderName } = this
document.getElementById("gitClone").innerHTML =
`<a class="folderActionLink" href="/globe.html?folderName=${folderName}">live traffic</a> · <a class="folderActionLink" href="/diffs.htm/${folderName}">revisions</a> · <a class="folderActionLink" href="${folderName}.zip">download</a> · <a class="folderActionLink" href="#" onclick="window.app.duplicate()">duplicate</a> · <a href="#" class="folderActionLink" onclick="window.app.renameFolder()">rename</a> · <a href="#" class="folderActionLink" onclick="window.app.deleteFolder()">delete</a>`
`<a class="folderActionLink" href="/globe.html?folderName=${folderName}">live traffic</a> · <a class="folderActionLink" href="/diffs.htm/${folderName}?count=10">revisions</a> · <a class="folderActionLink" href="${folderName}.zip">download</a> · <a class="folderActionLink" href="#" onclick="window.app.duplicate()">duplicate</a> · <a href="#" class="folderActionLink" onclick="window.app.renameFolder()">rename</a> · <a href="#" class="folderActionLink" onclick="window.app.deleteFolder()">delete</a>`
}

async renameFolder() {
Expand Down

0 comments on commit 33de6ac

Please sign in to comment.