skycult

Results 5 comments of skycult

Hi @gerasimvol I tried on a MacBook Pro 16" and the animation is jerky.

See the images on the right that scroll after a while. ![parallax](https://user-images.githubusercontent.com/1329697/78066371-1e116800-7395-11ea-989a-3de11d1370a6.gif)

Sorry for delay. In my project with [Framework7](http://www.idangero.us/framework7/) I see the form that scrolls over the top whereas when I build a default test app with cordova, the view shrink...

This is a simple index.js file: ```js const union = require('lodash/union'); class Service { constructor () { console.log(union([1, 2, 3], [4, 5, 6])); } } module.exports = Service; ``` I...

Thank you it works: ```javascript import union from 'lodash/union'; export class Service { constructor () { console.log(union([1, 2, 3], [4, 5, 6])); } } ``` But now I'm not able...