- 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 3 commits
-
-
Sam Saccone authored
-
Sam Saccone authored
-
Sam Saccone authored
-
- 08 Oct, 2015 2 commits
-
-
Arthur Verschaeve authored
Update React Readme
-
jonnykry authored
-
- 07 Oct, 2015 2 commits
-
-
Kaido Kert authored
-
Kaido Kert authored
-
- 06 Oct, 2015 2 commits
-
-
Pascal Hartig authored
TodoMvc example for scalajs-react
-
Sota Yamashtia authored
Close #1459
-
- 05 Oct, 2015 1 commit
-
-
Øyvind Raddum Berg authored
-
- 04 Oct, 2015 2 commits
-
-
Arthur Verschaeve authored
-
Addy Osmani authored
Polymer 1.0 demo cleanup
-
- 03 Oct, 2015 2 commits
-
-
Eric Bidelman authored
-
Eric Bidelman authored
-
- 02 Oct, 2015 4 commits
-
-
Eric Bidelman authored
-
Eric Bidelman authored
-
Eric Bidelman authored
-
Arthur Verschaeve authored
The app is getting outdated and is these days even totally broken sowe decided to remove it, till someone volunteers to maintain it and PRs it back with all remaining issues fixed. There was an open PR with some updates but it went inactive: https://github.com/tastejs/todomvc/pull/1241 Close #1241 Fix #1222 Ref #1234 Ref #1110
-
- 29 Sep, 2015 3 commits
-
-
Arthur Verschaeve authored
Update index.html
-
Breno Polanski authored
-
Frederik Ring authored
comment was using `todos` whereas the code is using `todos-react-backbone` - i opted for a non-breakable comment instead
-
- 28 Sep, 2015 5 commits
-
-
Addy Osmani authored
🍕 🌟 Polymer 1.0🌟 🍕 -
Sam Saccone authored
* Update for spec complience * Polymer 0.5 -> 1 changes
-
Sam Saccone authored
-
Sam Saccone authored
-
Sam Saccone authored
fix checkbox bug in the mithril TodoMVC example
-
- 27 Sep, 2015 2 commits
-
-
Einar Norðfjörð authored
added an error callback to the hidden check of the clear completed items button. This was done so that frameworks like mithril who remove elements from DOM in stead of putting css-classes like .hidden on elements get through the test suite
-
Einar Norðfjörð authored
The bug is caused by lack of keying. To reproduce the bug: 1. Open the app 2. Create at least two tasks 3. Complete all tasks 4. Go to the completed view 5. uncheck the top item 6. Voilá, see how the first item in the list now has an unchecked checkbox
-
- 23 Sep, 2015 2 commits
-
-
Sam Saccone authored
Fix typo
-
Cícero Pablo authored
-
- 21 Sep, 2015 1 commit
-
-
Arthur Verschaeve authored
Fix broken links
-