Skip to content

Commit

Permalink
fixes wrong whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
juni-vogt committed Jun 14, 2017
1 parent ded07be commit 0df5f2a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wttr-uebersicht",
"version": "0.2.1",
"version": "0.2.2",
"description": "wttr.in Übersicht widget",
"main": "wttr.widget/index.js",
"scripts": {
Expand Down
Binary file modified wttr.widget.zip
Binary file not shown.
4 changes: 1 addition & 3 deletions wttr.widget/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,5 @@ command: function(cb) {

render: out => `
<link rel="stylesheet" href="wttr2.widget/terminal-colors.css" />
<pre>
${out.err || out.data.split('\n').slice(1, 7).join('\n')}
</pre>
<pre>${out.err || out.data.split('\n').slice(1, 7).join('\n')}</pre>
`

0 comments on commit 0df5f2a

Please sign in to comment.