Ben Hockey

Results 16 issues of Ben Hockey

this makes a property's metadata independent of the value's metadata. fixes #61

many return descriptions contain markdown - some even [contain examples](https://github.com/dojo/dojo/blob/1.8.3/NodeList-manipulate.js#L330-L340) EDIT: this PR now encompasses a number of issues that are somewhat interdependent. the end goal was to provide the...

`@media screen and (max-width: 319px) {.unit{float: none !important; width: auto !important;}}` could be a little too coarse at times. for example, i might have a number of modules which have...

should it be possible to add more than one handler for the same path? is that reasonable?

if i use generator-dojo to make an app, then i share that app with someone, what is the minimum to get the app started? (assume they might not even have...

i would write a test but i'm honestly stuck with how to get the tests to run. in lieu of tests, here's a snippet that shows the issue i'm trying...

the build automatically discovers the json-schema package.json and [sets the location for json-schema to be json-schema/lib](https://github.com/dojo/util/blob/ea63ffae5e87d36bde8fd9931bcb35fb5bf3ca9f/build/buildControl.js#L255) based on the `"directories"` directive in the package.json. this causes the json-schema/lib/validate dependency to...

fixes #2 because of #3 i'm not sure if these tests pass but i think the changes to the tests should be correct

a node idiom (and hence a de facto package.json idiom) is that `npm install` should install all dependencies and then `npm test` would run the tests. currently when i try...

it's hard to use extensions/jsonSchema with a custom base Model. e.g. i have a base Model for all my models which is something like this: ``` js define(function (require) {...