1. 04 Feb, 2015 1 commit
  2. 02 Feb, 2015 1 commit
  3. 29 Jan, 2015 3 commits
  4. 28 Jan, 2015 1 commit
  5. 27 Jan, 2015 6 commits
  6. 26 Jan, 2015 4 commits
  7. 24 Jan, 2015 1 commit
  8. 23 Jan, 2015 2 commits
    • Adam Barth's avatar
      Remove touch events from Sky · 106c5322
      Adam Barth authored
      We use pointer events instead.
      
      R=esprehn@chromium.org
      
      Review URL: https://codereview.chromium.org/868133003
      106c5322
    • Elliott Sprehn's avatar
      Don't set expression attributes before they're bound. · 0b73de95
      Elliott Sprehn authored
      We were cloning elements with all the attributes that contained
      expressions like attrName="{{ foo }}" which meant we'd go through the
      reflection process converting that value and also call the
      attrNameChanged() callback and the attributeChanged() with the braced
      string which the element didn't really want to know about.
      
      After this patch we create a "clone source node" which is a copy of the
      original element without the attributes that have the expressions and
      use that when cloning, then we assign the properties using data binding
      later.
      
      R=abarth@chromium.org, ojan@chromium.org
      
      Review URL: https://codereview.chromium.org/868973002
      0b73de95
  9. 22 Jan, 2015 1 commit
  10. 16 Jan, 2015 2 commits
  11. 15 Jan, 2015 2 commits
  12. 14 Jan, 2015 2 commits
  13. 13 Jan, 2015 1 commit
    • Hixie's avatar
      Examples: move markAsLaidOut() to just before the return, so the asserts work · 7598f1fd
      Hixie authored
      Specs: introduce layoutDescendants() to avoid work when a layout
      manager is unaffected by its childrens' intrinsic dimensions
      Examples: update for layoutDescendants() change
      Specs: add "lifetime" to resolver settings so that a transition can
      avoid having to dirty every consumer of the property every frame when
      it only needs to update the objects that are changing that frame
      Specs: expose the parents on AbstractStyleDeclarationList subclasses
      Specs: fix documentation around autoreap
      Specs: fix definition of setProperty()
      Specs: clean up the dimension-related logic of layout managers
      
      Review URL: https://codereview.chromium.org/850593003
      7598f1fd
  14. 12 Jan, 2015 1 commit
  15. 09 Jan, 2015 3 commits
  16. 08 Jan, 2015 3 commits
  17. 07 Jan, 2015 2 commits
  18. 06 Jan, 2015 1 commit
  19. 05 Jan, 2015 1 commit
  20. 19 Dec, 2014 1 commit
    • Elliott Sprehn's avatar
      Add declarataive event handlers. · e1e71107
      Elliott Sprehn authored
      Now inside the <template> of a SkyElement you can use
      on-eventName="method" on any element to add event listeners.
      
      For example you can write <sky-button on-click="handleClick">
      and then define handleClick(event) on the element class that
      contains the button.
      
      In adding this and tests I also realized that property bindings
      were not setup on the initial call to bind(), which is now
      fixed in this patch (See change to Node.prototype.bind).
      
      R=eseidel@google.com, rafaelw@chromium.org
      
      Review URL: https://codereview.chromium.org/812713005
      e1e71107
  21. 18 Dec, 2014 1 commit