Kostas Bariotis
Kostas Bariotis
To get user's email
After each step, somehow show the user's previous step selection.
https://developers.google.com/web/updates/2015/09/history-api-scroll-restoration ``` if ('scrollRestoration' in history) { // Back off, browser, I got this... history.scrollRestoration = 'manual'; } ```
We currently have configured our models to have a custom `versionKey` and we need this for this plugin to work. Thank you :)
When new entries are landing into the logs area, do not automatically scroll to the top of the screen. The user may stop somewhere below to examine a set of...
Following #108, yargs 3.32 and above supports configuration files. https://github.com/yargs/yargs#configkey-description-parsefn
A lot of people I guess, like me, will put this app on a free Heroku plan. But the free Dynos takes some time to load. If there were an...
``` var AWS = require('aws-sdk'); exports.handler = function(event, context) { var sns = AWS.SNS(); var dynamoDb = AWS.DynamoDB(); // do something with the services e.g. sns.publish } ``` I understand...
This is my take to resolve #17. Thank you :)