Skip to content

Commit

Permalink
Replace double to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Arief Wibowo authored and Arief Wibowo committed Jun 21, 2016
1 parent e8b34ae commit 201be0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/showtheway.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ window.plugin.showtheway = {
.prop('readonly', true)
.addClass('showtheway-portal-url')
.click(function () {
if (!$(this).hasClass("selected")) {
if (!$(this).hasClass('selected')) {
$(this).select();
$(this).addClass("selected");
$(this).addClass('selected');
}
})
.blur(function () {
if ($(this).hasClass("selected")) {
$(this).removeClass("selected");
if ($(this).hasClass('selected')) {
$(this).removeClass('selected');
}
})
)
Expand Down

0 comments on commit 201be0f

Please sign in to comment.