forked from Benjol/SE-AutoReviewComments
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a single property in Local Storage instead of many
Fixes Benjol#175
- Loading branch information
1 parent
5a04d3e
commit 0164d31
Showing
3 changed files
with
203 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<li> | ||
<input id="comment-$ID$" type="radio" name="commentreview" /> | ||
<label for="comment-$ID$"> | ||
<span id="name-$ID$" class="action-name">$NAME$</span> | ||
<span id="desc-$ID$" class="action-desc">$DESCRIPTION$</span> | ||
<label> | ||
<input type="radio" name="commentreview"> | ||
<span class="action-name">$NAME$</span> | ||
<span class="action-desc">$DESCRIPTION$</span> | ||
<button class="quick-insert" title="Insert now">↓</button> | ||
</label> | ||
</li> |
Oops, something went wrong.