Skip to content

Commit

Permalink
Fixed lint error for AMO
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyBranton committed Feb 21, 2021
1 parent 5c4a033 commit dcff952
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions firefox/options/script/class/Website.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
class Website {
url = '';
domain = '';
subdomain = '';
path = '';

constructor(url) {
this.domain = '';
this.subdomain = '';
this.path = '';
this.url = url;
url = url.substring(url.indexOf('//') + 2, url.length);

Expand Down

0 comments on commit dcff952

Please sign in to comment.