- 03 Nov, 2015 1 commit
-
-
Sam Saccone authored
improve riotjs example
-
- 31 Oct, 2015 1 commit
-
-
Tianxiang Chen authored
remove unnecessary update()
-
- 30 Oct, 2015 1 commit
-
-
Sam Saccone authored
update Vue.js to 1.0.0
-
- 27 Oct, 2015 1 commit
-
-
Evan You authored
-
- 20 Oct, 2015 4 commits
-
-
Pascal Hartig authored
React: Remove direct DOM manipulation
-
Pascal Hartig authored
Fix #1488
-
Pascal Hartig authored
Turn the `<input>` into a [Controlled Component](https://facebook.github.io/react/docs/forms.html#controlled-components) and avoid fiddling with the DOM in an imperative way.
-
Sam Saccone authored
Fixed links for TypeScript issues/documentation.
-
- 19 Oct, 2015 10 commits
-
-
Daniel Rosenwasser authored
-
Arthur Verschaeve authored
Update bio
😮 -
Arthur Verschaeve authored
Include all nested js in glob for typescript
-
Sam Saccone authored
-
Sam Saccone authored
-
Arthur Verschaeve authored
Ignore js style linting in typescript examples
-
Sam Saccone authored
-
Sindre Sorhus authored
travis update
-
Sam Saccone authored
-
Sam Saccone authored
-
- 18 Oct, 2015 4 commits
-
-
Arthur Verschaeve authored
Ref a6144290
-
Arthur Verschaeve authored
scalajs-react example: Update to new API
-
Arthur Verschaeve authored
Add jsblocks
-
Øyvind Raddum Berg authored
-
- 17 Oct, 2015 2 commits
-
-
Sindre Sorhus authored
Hanging comma
-
Lawrence Williams authored
-
- 16 Oct, 2015 1 commit
-
-
Antonio Stoilkov authored
-
- 15 Oct, 2015 1 commit
-
-
remojansen authored
-
- 14 Oct, 2015 2 commits
-
-
Pascal Hartig authored
Fix for react addons clasSset deprecated warning
-
Remo Jansen authored
-
- 13 Oct, 2015 2 commits
-
-
Sam Saccone authored
use express.js server for tests; closes #1465
-
jonnykry authored
Fixes #1405
-
- 12 Oct, 2015 1 commit
-
-
David Runger authored
Use an express.js server for tests instead of http-server. The primary reason for this is that express has an available middleware that allows us to specificy the location of the favicon other than the root directory. This is needed because the favicon lives in the site-assets directory.
-
- 11 Oct, 2015 2 commits
-
-
Pascal Hartig authored
Backbone: remove unneeded logic in todo View
-
David Runger authored
The removed check is unncecessary and also incorrectly implemented, resulting in a test failure (the "Editing should trim entered text" example) and flawed user interaction. This change results in 100% passing tests and the desired user interaction. Unneeded: the associated comment states that "Model values changes consisting of whitespaces only are not causing change to be triggered", and so the code manually triggers a change event when the only change to the todo is whitespace being added at the beginning and/or end of the todo. However, there is no need for the change event when this is the only change. So the situation described in the comment is not a problem. The change event triggers a re-rendering of the view, but if the only change is whitespace at the beginning or end, which is trimmed off, anyway, then re-rendering is pointless. Incorrectly implemented: The code in question is `this.model.trigger('change');`. This ultimately raises an error, because (perhaps surprisingly) when the 'change' event is manually triggered on a model, the model is not automatically bound as the so-to- speak "context" of that change. This can be corrected manually like so: `this.model.trigger('change', this.model);`. This eliminates the error and failing test case. However, as this code is not needed, anyway, of course it's better to simply remove it. :)
-
- 10 Oct, 2015 6 commits
-
-
Pascal Hartig authored
-
Pascal Hartig authored
⚡ ️ Automated Leak Detection on CI⚡ ️ -
Pascal Hartig authored
-
Pascal Hartig authored
Close #1339
-
Pascal Hartig authored
-
Stéphane Legrand authored
Js_of_ocaml is a compiler of OCaml bytecode to Javascript. OCaml is a general purpose programming language with an emphasis on expressiveness and safety. Js_of_ocaml brings nearly all the OCaml features to Javascript. And especially its powerful type system.
-
- 09 Oct, 2015 1 commit
-
-
Sam Saccone authored
-