Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit fa723eb

Browse files
committed
Minor changes
1 parent 47aa450 commit fa723eb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ A browser extension that enhance all Merge Requests lists on any instance of Git
1616
## Prerequisites
1717

1818
- **GitLab**: 9.0 or above or GitLab.com (this addon requires GitLab API v4)
19-
- **Firefox**: >= 63 (because this extension uses the clipboard API)
20-
- **Chrome**: >= 66 (because this extension uses the clipboard API)
19+
- **Firefox**: >= 63 (because this extension uses the `clipboard.writeText` API)
20+
- **Chrome**: >= 66 (because this extension uses the `clipboard.writeText` API)
2121

2222
## Installation
2323

js/content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226

227227
/**
228228
* Attach a click event to all buttons inserted by the extension allowing to copy the source and target
229-
* branches name.
229+
* branches name (if feature is enabled by the user).
230230
*/
231231
attachClickEventToCopyBranchNameButtons() {
232232
if (!this.preferences.enable_buttons_to_copy_source_and_target_branches_name) {

js/options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class OptionsPage {
55
/**
66
* Class which handles everything related to the options page of the extension. Preferences are persisted in
7-
* the local storage of the browser.
7+
* the browser's local storage.
88
*/
99
constructor() {
1010
this.preferencesManager = new globals.Gmrle.PreferencesManager();
@@ -23,7 +23,7 @@
2323
}
2424

2525
/**
26-
* Retrieve preferences from local storage and update the options page accordingly.
26+
* Retrieve preferences from local storage and update the UI accordingly.
2727
*/
2828
restoreOptionsFromStorage() {
2929
let self = this;

0 commit comments

Comments
 (0)