cepm-nate

Results 28 comments of cepm-nate

Even after I made the corrections above, we were still having problems if they picked 12. Did they mean noon or midnight? And after reading this http://www.simplecodeworks.com/IQ/midnight.html, I decided to...

This merge does work. I hope @weareoutman merges it soon (I did it manually for my project).

Update: Saving an image from the camera into IDB seems to trigger this pretty often, whereas selecting an image from the gallery and saving THAT into IDB works fine. My...

Just cloned repo and don't see any .jar file in that folder. I hope the owner merges the PR soon. All I have is gradle-wrapper.properties

I'm also seeing this. For a beginner, this can cause a slight problem. Looks like PR #22 should fix it. Hope it gets merged soon.

Regarding the Fonts: I've been able to load them into an expo project with Material Design by doing something like this for my main render() call: render() { return !this.state.resourcesLoaded...

Has anyone seen recent progress on this in the Safari world, or for any browsers on Windows? So far it looks like the only place it works is ChromeOS, MacOS,...

I'm using Vue and F7 as well, yet rendering the input using , no F7 involved. In main.js I have ```` import Framework7Keypad from 'framework7-plugin-keypad'; Framework7.use(Framework7Keypad); ```` And in my...

Here is my version: ```` "framework7": "^5.0.5", "framework7-icons": "^3.0.0", "framework7-plugin-keypad": "^3.0.1", "framework7-vue": "^5.0.5", ```` I'm importing like such: ```` import Vue from 'vue'; import Framework7 from 'framework7/framework7-lite.esm.bundle'; import Framework7Vue from...

My current workaround for the main bug mentioned is to put if (!collection.getChanges()) collection.flushChanges(); just before the collection.insert() line, so that the _changes property is created before the .insert() call....