Skip to content
This repository has been archived by the owner on Oct 18, 2020. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Apr 30, 2020
1 parent 0a5d42d commit 74991d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/client.js
Expand Up @@ -112,7 +112,7 @@ $.fn.replaceClass = function(search, replacement) {
Handlebars.registerHelper("select", function(sel, opts) {
return opts.fn(this).replace(new RegExp(` value="${sel}"`), "$& selected=");
});
Handlebars.registerHelper("is", function (a, b, opts) {
Handlebars.registerHelper("is", function(a, b, opts) {
return a === b ? opts.fn(this) : opts.inverse(this);
});

Expand Down

0 comments on commit 74991d5

Please sign in to comment.