Skip to content

Commit

Permalink
Modernized with lebab before release
Browse files Browse the repository at this point in the history
  • Loading branch information
arguiot committed Aug 10, 2017
1 parent 2c54c88 commit 3ba610b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/display.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ class DisplayJS {
}
}
format = time_formats[time_formats.length - 1];
return Math.floor(seconds / format[2]) + " " + format[1] + " " + token;
return `${Math.floor(seconds / format[2])} ${format[1]} ${token}`;
}
// import a script
import(source, callback) {
Expand Down
Loading

0 comments on commit 3ba610b

Please sign in to comment.