An error occurred fetching the project authors.
  1. 28 Mar, 2015 1 commit
  2. 30 Oct, 2014 1 commit
    • Pascal Hartig's avatar
      React: Upgrade app to 0.12 · 0af300fe
      Pascal Hartig authored
      - Remove obsolete @jsx annotations
      - Rename renderComponent -> render
      - Use event.preventDefault instead of returning false
      0af300fe
  3. 14 Oct, 2014 1 commit
  4. 12 Aug, 2014 1 commit
  5. 03 Jun, 2014 1 commit
  6. 20 Feb, 2014 1 commit
  7. 26 Jan, 2014 1 commit
  8. 23 Jan, 2014 1 commit
  9. 22 Jan, 2014 1 commit
  10. 26 Nov, 2013 1 commit
  11. 02 Nov, 2013 1 commit
  12. 30 Oct, 2013 1 commit
  13. 29 Oct, 2013 1 commit
    • Vjeux's avatar
      React - Improve performance by 6x · d456aeb1
      Vjeux authored
       - 2x: The unminified version contains invariants that shouldn't be used in production and slow it down.
      
       - 3x: Adding a shouldComponentUpdate override in order to short-cut re-rendering the component when props and state didn't change. In order to do that, we need to avoid doing mutations by doing a shallow copy and only modifying what changed
      
       - When React 0.5.0 will be released, it will give another 1.5x.
      
      Other miscellaneous changes:
      
       - Update class="..." to className="..." to work in 0.5.0 (still works in 0.4.1)
       - Use prop="..." instead of prop='...'
       - Use filter(f, this) instead of filter(f.bind(this)) to prevent a function allocaton
      d456aeb1
  14. 25 Jul, 2013 1 commit
    • Cheng Lou's avatar
      Upgrade to React 0.4, fully compilant · 1b16a19d
      Cheng Lou authored
      - Compilant with coding style.
      - Removed app.css. No need anymore since we freed id.
      - Render info footer separately (specs).
      - Tweak footer to make it pass jshint when compiled:
        - {''} after 'left'.
        - {''} around `clear completed`.
        - Breaking style for footer clearButton, `>` on the same line.
      - Rename cx and put it in Utils.
      - Routing with director.
      - Change some keyUp to keyDown (specs).
      - Strip form tags (specs? Referred to the stable ones).
      - Trim after editing item.
      - Manually autofocus (attribute not supported in ie9).
      - Input focus now triggers as a callback (because of batch rendering).
      - Controlled input.
      - Gutter at 80.
      - Class `completed` trim whitespace.
      - Remove bind.
      1b16a19d