Nicolas Perriault

Results 123 comments of Nicolas Perriault

Suggestion: could we have support for a `"stylesheets"` directive added to `elm-package.json` which would load these from the generated html page? I must admit I have no idea of the...

> We should validate the entered JSON schema, eg. using https://github.com/mafintosh/is-my-json-valid. WELL, probably not with this one. ![](http://i.imgur.com/ON1w3C6.png)

Well, could it be tweaked a little then? Entering this doesn't make it fail :/ ``` json { "type": "object", "porperties": { "content": { "type": "string" }, "title": { "type":...

For example if there's an option to disallow unknown JSON schema property names in the schema itself, that would be nice.

Not really, here the purpose would be to check that the entered json schema actually matches the json schema spec.

This is an interesting use case, as we don't have anything to extend forms capabilities in the kinto admin just yet. Forms are powered by [react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form), which supports custom [fields,...

I'm planning to work on that after #371 lands. Basically, JSONEditor should perform JSON validation, to their consumers/wrappers.

Out of genuine curiosity, how would you share the key between users A and B? At some point it seems they both need to access it, and I'm wondering how...

We could also provide an input field for for admins to provide the URL of the Kinto server they want the data to be published to. This Kinto server URL...

There's a `storage` event you can subscribe to to listen for changes performed outside of the current page environment. It looks like this: ```js // Ensure session is refreshed when...