Goldengate icon indicating copy to clipboard operation
Goldengate copied to clipboard

Results 9 Goldengate issues
Sort by recently updated
recently updated
newest added

I'm a little worried that albeit [local URL loading was added](https://github.com/WebKit/webkit/commit/77f8e5d191310af04f117aae0fc20c234f03e6c2), it won't ship until iOS 9. Even if they do ship it in iOS 8.2, OS X will surely...

The idea is that Goldengate is a very lightweight library, not a full-fledged framework with a plugin for everything. But I think it would be useful to include some common...

All calls to Goldengate.dispatch create a Deferred object and save it onto a map. Problem is, if the call doesn't return anything, the Deferred stays there forever. Unlikely to be...

At the moment, you can only pass simple values (numbers, booleans, strings), arrays and dictionaries/objects across the bridge to Swift. I think it would be useful to be able to...

Goldengate won't be a practical project if you have to rewrite all of your (and 3rd party) Cordova plugins to `Goldengate.Plugin`s. It would be great to have some sort of...

Instead of: `Goldengate.dispatch('Foo', 'bar', [args])` I'd like: `Goldengate.Foo.bar(args)` I don't think you can catch calls of undefined methods like that, so instead we have to pass the list of routes...