Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Address button width from #1613. Change buttons to say 'Save' instead…
Browse files Browse the repository at this point in the history
… of 'Capture'
  • Loading branch information
ianb committed Oct 11, 2016
1 parent ee265f0 commit a36ada6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/data/selector-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ const ui = (function () { // eslint-disable-line no-unused-vars
button.appendChild(myShotsPost);
this.overlayEl.appendChild(button);
let visibleButton = makeEl("div", "pageshot-overlay-button pageshot-visible");
visibleButton.textContent = "Capture visible";
visibleButton.textContent = "Save visible";
visibleButton.addEventListener("click", callbacks.onClickVisible, false);
this.overlayEl.appendChild(visibleButton);
let fullPageButton = makeEl("div", "pageshot-overlay-button pageshot-full-page");
fullPageButton.textContent = "Capture full page";
fullPageButton.textContent = "Save full page";
fullPageButton.addEventListener("click", callbacks.onClickFullPage, false);
this.overlayEl.appendChild(fullPageButton);

Expand Down
1 change: 1 addition & 0 deletions static/css/inline-selection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ $overlay-z-index: 9999999999;
position: absolute;
right: 15px;
top: 15px;
width: 115px;
}

.pageshot-visible {
Expand Down

0 comments on commit a36ada6

Please sign in to comment.