Skip to content
View gist:a9c1a0224a92a091f0da
[Error: Parse Error] bytesParsed: 483, code: 'HPE_UNEXPECTED_CONTENT_LENGTH' } Error: Parse Error
at Error (native)
at Socket.socketOnData (_http_client.js:315:20)
at emitOne (events.js:90:13)
at Socket.emit (events.js:182:7)
at readableAddChunk (_stream_readable.js:147:16)
at Socket.Readable.push (_stream_readable.js:111:10)
at TCP.onread (net.js:525:20)
View README.md

The issue:

..mobile browsers will wait approximately 300ms from the time that you tap the button to fire the click event. The reason for this is that the browser is waiting to see if you are actually performing a double tap.

(from a new defunct https://developers.google.com/mobile/articles/fast_buttons article)

touch-action CSS property can be used to disable this behaviour.

touch-action: manipulation The user agent may consider touches that begin on the element only for the purposes of scrolling and continuous zooming. Any additional behaviors supported by auto are out of scope for this specification.

View paragraph.md

I am a parapgraph.

I am a parapgraph.

"I am a parapgraph."

'I am a parapgraph.'

(I am a parapgraph.)

View 1.js
let addTask,
removeTask;
addTask = (data) => {
return {
type: 'ADD_TASK',
data: data
};
};
View SassMeister-input-HTML.html
<div class='icon'></div>
View types.js
export type cell = string;
export type row = Array<cell>;
View promises.js
return request('http://www.everymancinema.com/venues/')
.then(function (response) {
let $ = response.data,
locations = [];
$('.main .content a[href^="/venues/"]').each(function () {
locations.push({
nid: layman.match($(this).attr('href'), /venues\/([^\/]+)\//),
name: $(this).find('img').attr('alt'),
url: 'http://www.everymancinema.com' + $(this).attr('href')
View filmData.js
jsdom.env({
html: '<script>var filmData = {foo: "bar"};</script>',
features: {
ProcessExternalResources: true
},
done: (error, window) => {
if (error) {
throw new Error('Something is up!');
}
Something went wrong with that request. Please try again.