Jacob Emcken

Results 17 issues of Jacob Emcken

We discussed this here: https://groups.google.com/forum/#!msg/enfocus/rZTL-GOrZtM/upolupLhF9QJ I suspect you would want to add a `callback` key in the options map for the `bind-form` function. But do you want to add an...

I have only tested read-form on the type "number", "tel" and "email" in html5: http://dev.w3.org/html5/markup/input.html "tel" and "email" failed but I guess that my browser identifies type="number" as text (at...

I'm working with the [data attributes](http://www.w3.org/html/wg/drafts/html/master/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes) in HTML and found something which I think is a bug. When getting a property which isn't `:value` I get `undefined`. Even though I...

Given an URL like the following, reitit finds a query param called `test`: `http://localhost:3449/#/query-params-test?test=something` While given an URL like the following reitit does not recognize any query params even though...

Documentation

I don't use Compojure on a regular basis (sometimes with years in between), so I always hit the wiki to find out how it is used. The basics are really...

The documentation on the website references `$pushAll`: http://clojuremongodb.info/articles/updating.html#using_pushall_operator Following that example gave me the error: `Unable to resolve symbol: $pushAll in this context` As far as I can tell from...

Right now you can "and" validations with the `combine` function. I'm looking for something which can "or" validations based on a predicate (including all the build-in stuff like `required`, `not-blank`...

I can't figure out how to distinguish when I forgot to evaluate a form and when I'm just waiting for something slow (maybe even hanging). I noticed this mostly when...

evaluation
repl

Since the file project.clj is specific to Leiningen projects it seem like a good default. Resolves: #279

I am seeing this: https://github.com/weavejester/cljfmt/blob/1003c677200e90bc19f7c8d83ea58bd17b900a5e/cljfmt/src/cljfmt/main.clj#L169 But the `project.clj` file is ignored when running `lein cljfmt check` (empty configuration), unless I specifically specify it (`lein cljfmt check project.clj`). I've narrowed it...

enhancement