Skip to content

Commit db7333e

Browse files
committed
Rename the injected option's caption as the script is injected regardless of it
Fix #61.
1 parent 63626c4 commit db7333e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/browser/extension/options/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ chrome.runtime.getBackgroundPage( background => {
7272
<span className="comment">(required for ImmutableJS states)</span>
7373
</div>
7474
<div className="input">
75-
<span className="caption">Inject in all pages:</span>
75+
<span className="caption">Allowed everywhere:</span>
7676
<input id="inject" type="checkbox" defaultChecked={items.inject} onChange={saveOption}/>
7777
<span className="comment">(disable to allow only the urls bellow)</span>
7878
</div>
7979
<div className="input">
80-
<span className="caption">Pages urls to inject DevTools in (regex from new line):</span>
80+
<span className="caption">Allowed for the following urls (regex from new line):</span>
8181
<textarea onChange={saveUrls} id="urls" defaultValue={items.urls}/>
8282
</div>
8383
<div className="input">

src/browser/views/options.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ html
77
style.
88
body {
99
padding: 2px;
10-
min-width: 360px;
10+
min-width: 380px;
1111
}
1212
.input {
1313
margin-bottom: 10px;
1414
}
1515
.caption {
1616
margin-right: 5px;
17-
width: 105px;
17+
width: 115px;
1818
display: inline-block;
1919
vertical-align: top;
2020
padding-top: 3px;

0 commit comments

Comments
 (0)