Skip to content

Commit

Permalink
demo app gif
Browse files Browse the repository at this point in the history
  • Loading branch information
teseo committed Jul 6, 2016
1 parent 5acbba7 commit ebc2d9f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Binary file added assets/demoApp.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion components/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export default class Main extends Component {
}
componentDidMount() {
this.makeQuery('');
console.log(this);
}
renderRow = (article, sId, rId) => {
const { navigator } = this.props;
Expand Down
4 changes: 2 additions & 2 deletions utils/articleDateParser.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export default function parseArticleDate(date){
return new Date(date).toLocaleString('en-GB',
return new Date(date).toLocaleString('en',
{
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: '2-digit',
minute:'2-digit'})
minute:'2-digit'}).slice(0, -8)
}

0 comments on commit ebc2d9f

Please sign in to comment.