This repository was archived by the owner on Aug 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 ) {
Original file line number Diff line number Diff line change 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 ( ) ;
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 ;
You can’t perform that action at this time.
0 commit comments