Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial version for animation with scene approach #1400

Open
wants to merge 294 commits into
base: ENYO-2174-directorapproach
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 12, 2015

  1. add ScrimSupport proposal

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    0ab00a5 View commit details
    Browse the repository at this point in the history
  2. move direction determination to ViewManager

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    0f95b46 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2015

  1. fix layout bug when cancelling drag

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    cde87ba View commit details
    Browse the repository at this point in the history
  2. add count parameter to ViewManager.back()

    Enables popping multiple views off the stack
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    486b7c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2015

  1. add notification method invocation for ViewManager lifecycle events

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    10f1685 View commit details
    Browse the repository at this point in the history
  2. simply declarative child ViewManager handling

    Rather than checking for the isManager flag which was inconsistently
    applied, a VM can call a private isManager method to determine if the
    provided view exists and is in its viewManagers hash. A consequence of
    this change is that VMs can only be declared within the managers[] and,
    when created manually, will always be considered a manager.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    733e88f View commit details
    Browse the repository at this point in the history
  3. fix (actually this time) the navigation direction for a cancelled drag

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    39f52ee View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d484296 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2015

  1. refine and standardize view-related events

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 16, 2015
    Configuration menu
    Copy the full SHA
    9df27e1 View commit details
    Browse the repository at this point in the history
  2. add getActive() method to ViewManager

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 16, 2015
    Configuration menu
    Copy the full SHA
    c56a2c3 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2015

  1. add documentation to ViewManager

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 18, 2015
    Configuration menu
    Copy the full SHA
    ded1d66 View commit details
    Browse the repository at this point in the history
  2. switch to activateImmediate after drag to avoid pause

    When using activate, the requestAnimationFrame caused a brief delay
    before the transition began which created an odd pause when releasing
    the drag. Using activateImmediate resolves this.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 18, 2015
    Configuration menu
    Copy the full SHA
    2f6ff77 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2015

  1. add manage event to ViewManager

    Instead of overloading 'activate' with both views and manager and
    incongruently using 'deactivate' and 'dismiss' respectively for tear
    down, add a new 'manage' event for activation of a child ViewManager.
    
    Note that, for the time being, there is intentionally no
    post-transition event (like 'activated' for views) because the
    ViewManager's activation isn't animated in any way.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    e370b57 View commit details
    Browse the repository at this point in the history
  2. rework transition completion for ViewLayout

    Previously, transition completion was handled per-view so ViewLayout
    would fire its 'complete' event twice in most scenarios. Since
    ViewManager.direction to be reset when the first view transitioned,
    the event payload for the second view had an incorrect direction value.
    
    Furthermore, it doesn't make sense for 'complete' to fire until
    the entire transition is complete so it now monitors the state of
    both views' transition and only notifies when both are done.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    d6de25f View commit details
    Browse the repository at this point in the history
  3. allow customization of scrim in ScrimSupport

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    4dc2434 View commit details
    Browse the repository at this point in the history
  4. fix jshint errors

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    001bc49 View commit details
    Browse the repository at this point in the history
  5. complete transitions when dragging starts during

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    29468f2 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2015

  1. add webkit prefixed transforms

    Issue: ENYO-2723
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 23, 2015
    6 Configuration menu
    Copy the full SHA
    3c7b841 View commit details
    Browse the repository at this point in the history
  2. support multiple calls to activate() in the same frame

    View activation is asynchronous (using rAF) so multiple calls to
    activate() in the same frame produced unexpected results and out of
    sync styling. For floating panels, the stack would only include the
    last view. For fixed panels, the direction could be incorrect if the
    penultimate activation was on the opposite side of the final activated
    view from the source view.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 23, 2015
    Configuration menu
    Copy the full SHA
    0a9f07f View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2015

  1. reset drag state when dragging in an invalid direction

    Issue: ENYO-2714
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 26, 2015
    Configuration menu
    Copy the full SHA
    c46abed View commit details
    Browse the repository at this point in the history
  2. add prefixed CSS for webkit transition

    Issue: ENYO-2723
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 26, 2015
    Configuration menu
    Copy the full SHA
    0c497bd View commit details
    Browse the repository at this point in the history
  3. refactor cancelDrag to enable cancelling from other paths

    Issue: ENYO-2714
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 26, 2015
    Configuration menu
    Copy the full SHA
    f1b5512 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2015

  1. properly clean up dragView

    Issue: ENYO-2714
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Oct 27, 2015
    Configuration menu
    Copy the full SHA
    e6aa9ef View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2015

  1. clean up src

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 12, 2015
    Configuration menu
    Copy the full SHA
    73657c0 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2015

  1. add dismiss event when dragging VM

    Also add dragging property to distinguish between dismiss events
    
    Issue: PLAT-12048
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 16, 2015
    Configuration menu
    Copy the full SHA
    cb0dc38 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2015

  1. Merge pull request #1335 from enyojs/PLAT-12048-ryanjduffy

    Fixes PLAT-12048 add dismiss event when dragging VM
    ybsung committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    ecd0c45 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2015

  1. Configuration menu
    Copy the full SHA
    d9138bf View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2015

  1. Configuration menu
    Copy the full SHA
    2be5067 View commit details
    Browse the repository at this point in the history
  2. use mixin instead of bubbleTarget to funnel events to ViewLayout

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 24, 2015
    Configuration menu
    Copy the full SHA
    391aa7f View commit details
    Browse the repository at this point in the history
  3. add flick support to ViewManager

    Altered ViewManager.draggable to be either Boolean or a String to
    support draggable, flickable, both or neither.
    
    Issue: PLAT-12457
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 24, 2015
    Configuration menu
    Copy the full SHA
    398b42d View commit details
    Browse the repository at this point in the history
  4. refine handling of view activation/deactivation during dragging

    Prevents resetting transform on the dragView which caused a visual jump
    when the view reset its position before transitioning offscreen. Resets
    dragging when a view is activated and correctly retains a to be
    tore down node until dragging completes.
    
    Issue: PLAT-12619
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 24, 2015
    Configuration menu
    Copy the full SHA
    de845d9 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2015

  1. add support for activation options

    Added opts parameter to several methods to allow one-time activation
    configuration (e.g. disabling animation for hiding a floating panel).
    
    Issue: PLAT-11951
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Nov 25, 2015
    Configuration menu
    Copy the full SHA
    51d83f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2015

  1. Merge pull request #1339 from enyojs/PLAT-11951-ryanjduffy

    Fixes PLAT-11951
    ybsung committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    5a0d946 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2015

  1. prevent setting dragging when not really dragging

    Issue: PLAT-13424
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Dec 3, 2015
    Configuration menu
    Copy the full SHA
    e5347a6 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2015

  1. prevent cancelDrag events for invalid drags

    We always get the dragStart event but if the subsequent drags are not
    valid (e.g. there's only 1 view so dragging in any direction is
    invalid), we'd still fire cancelDrag. Preventing that by requiring
    dragging to be strictly true.
    
    Issue: PLAT-13424
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Dec 4, 2015
    Configuration menu
    Copy the full SHA
    e4d9d1f View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2015

  1. Merge pull request #1341 from enyojs/PLAT-13424-ryanjduffy

    Fixes PLAT-13424 prevent setting dragging when not really dragging
    ybsung committed Dec 14, 2015
    Configuration menu
    Copy the full SHA
    8c32649 View commit details
    Browse the repository at this point in the history
  2. ENYO-2913: Prevent concurrent transitions when setupTransitions is tr…

    …iggered via an index change or animateTo call.
    
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Dec 14, 2015
    Configuration menu
    Copy the full SHA
    cbedbaf View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2015

  1. ENYO-2917 Document wip modules/kinds

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Dec 18, 2015
    Configuration menu
    Copy the full SHA
    365910c View commit details
    Browse the repository at this point in the history
  2. ENYO-2917 Document wip modules/kinds

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Dec 18, 2015
    Configuration menu
    Copy the full SHA
    0420403 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1345 from enyojs/ENYO-2917-roysutton

    ENYO-2917 Document wip modules/kinds
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Dec 18, 2015
    Configuration menu
    Copy the full SHA
    a62d098 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2015

  1. remove prototype ViewLayouts and mark VM kinds as WIP

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Dec 21, 2015
    Configuration menu
    Copy the full SHA
    e0a69ca View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2015

  1. ENYO-2904 Add glossary entries for private/protected

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Dec 29, 2015
    Configuration menu
    Copy the full SHA
    990324d View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2015

  1. ENYO-2964 Fix mixin declarations

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Dec 30, 2015
    Configuration menu
    Copy the full SHA
    f85d466 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1347 from enyojs/ENYO-2904-roysutton

    ENYO-2904 Add glossary entries for private/protected
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Dec 30, 2015
    Configuration menu
    Copy the full SHA
    9da7183 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1348 from enyojs/ENYO-2964-roysutton

    ENYO-2964 Fix mixin declarations
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Dec 30, 2015
    Configuration menu
    Copy the full SHA
    ca5fe54 View commit details
    Browse the repository at this point in the history
  4. add drag event validation to ViewManager.handleDragFinish()

    If a drag is brief enough, we might only see a dragstart and dragfinish
    thereby skipping the validation logic in handleDrag(). Refactoring that
    logic out into a method so it can be called from both handlers.
    
    Issue: PLAT-14490
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Dec 30, 2015
    Configuration menu
    Copy the full SHA
    2762871 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4dcfda8 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2015

  1. Merge branch '2.6.0-dev' into ENYO-1279-rs26

    Roy Sutton committed Dec 31, 2015
    Configuration menu
    Copy the full SHA
    da43e5f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1143 from enyojs/ENYO-1279-rs26

    ENYO-1279 Document and make public containerName/containerOptions
    
    Reviewed-By: Jason Robitaille (jason.robitaille@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Dec 31, 2015
    Configuration menu
    Copy the full SHA
    0e21cf2 View commit details
    Browse the repository at this point in the history
  3. ENYO-2604: Remove scrim upon destruction.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Dec 31, 2015
    Configuration menu
    Copy the full SHA
    4989bb2 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2016

  1. Configuration menu
    Copy the full SHA
    d1c3c54 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1238 from enyojs/ENYO-1029-ysukharenko

    ENYO-1029: Add findIndex for enyo.Collection
    
    Reviewed-by: Rostyslav Bevz (rostyslav.bevz@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 4, 2016
    Configuration menu
    Copy the full SHA
    da99c5e View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2016

  1. ENYO-2917 Document wip modules/kinds

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 5, 2016
    Configuration menu
    Copy the full SHA
    c2bc400 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1349 from enyojs/PLAT-14490-ryanjduffy

    Fixes PLAT-14490
    ryanjduffy committed Jan 5, 2016
    Configuration menu
    Copy the full SHA
    336af42 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1206 from enyojs/ENYO-1355-jasonrobitaille

    ENYO-1355: AjaxSource still using enyo.Model.isNew
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Jan 5, 2016
    Configuration menu
    Copy the full SHA
    d9b6c34 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2016

  1. Merge pull request #1301 from enyojs/ENYO-2646-RoySutton

    ENYO-2646 Move contructor to create
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Jan 6, 2016
    Configuration menu
    Copy the full SHA
    f38a530 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1350 from enyojs/ENYO-2604-aarontam

    ENYO-2604: Remove scrim upon destruction.
    webOS101 committed Jan 6, 2016
    Configuration menu
    Copy the full SHA
    d315ece View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2016

  1. ENYO-2027: Prevent shared data object.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam authored and Ryan Duffy committed Jan 7, 2016
    Configuration menu
    Copy the full SHA
    4d18055 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1225 from enyojs/ENYO-2027-aarontam

    ENYO-2027: Prevent shared data object.
    
    Reviewed By: Derek Anderson (derek.anderson@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Jan 7, 2016
    Configuration menu
    Copy the full SHA
    8cd1fc3 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2016

  1. ENYO-2993: Use correct module name.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 9, 2016
    Configuration menu
    Copy the full SHA
    2d547b4 View commit details
    Browse the repository at this point in the history
  2. Update old links to module style

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 9, 2016
    Configuration menu
    Copy the full SHA
    c9573ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1352 from enyojs/ENYO-2993-aarontam

    ENYO-2993: Use correct module name.
    webOS101 committed Jan 9, 2016
    Configuration menu
    Copy the full SHA
    d13e9b1 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2016

  1. ENYO-2333: Update license.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 11, 2016
    Configuration menu
    Copy the full SHA
    d2b7108 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2016

  1. Android browser detection for some phones

    ZTE and Lenovo phones have browser userAgent like Android/4.x.x
    Conflicts:
    	source/dom/platform.js
    wangii authored and aarontam committed Jan 12, 2016
    Configuration menu
    Copy the full SHA
    7126a02 View commit details
    Browse the repository at this point in the history
  2. ENYO-896: Combine Android detection patterns.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 12, 2016
    Configuration menu
    Copy the full SHA
    8638255 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2016

  1. Merge pull request #1354 from enyojs/ENYO-896-aarontam

    ENYO-896: Combine Android detection patterns.
    webOS101 committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    203ec7e View commit details
    Browse the repository at this point in the history
  2. ENYO-2409: Fix Windows 10 app deployment error

    jeremy.thomas committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    9bad716 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1353 from enyojs/ENYO-2333-aarontam

    ENYO-2333: Update license.
    webOS101 committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    53cc4bd View commit details
    Browse the repository at this point in the history
  4. ENYO-2486 ENYO-3012 Add edge detection, fix docs

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    e860b6a View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2016

  1. ENYO-3016: Fix touch-gesture platform identification for Windows 10, …

    …add Windows 10 Mobile
    jeremy.thomas committed Jan 18, 2016
    1 Configuration menu
    Copy the full SHA
    f19f55e View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2016

  1. ENYO-3018 Correct badly doc'ed types

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    b9a3142 View commit details
    Browse the repository at this point in the history
  2. ENYO-2621: Mark method as WIP.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    f5b17da View commit details
    Browse the repository at this point in the history
  3. @member is more clear than @var

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    052773d View commit details
    Browse the repository at this point in the history
  4. ENYO-2486: Fix member type.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    597762b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1356 from enyojs/ENYO-2486-roysutton

    ENYO-2486 ENYO-3012 Add edge detection, fix docs
    
    Reviewed-By: Stephen Choi (stephen.choi@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    c0f9c3a View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2016

  1. Merge pull request #1355 from enyojs/ENYO-2409-jeremythomas

    ENYO-2409: Fix Windows 10 app deployment error
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    6e135af View commit details
    Browse the repository at this point in the history
  2. ENYO-3018: More Correction

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    0cc5d75 View commit details
    Browse the repository at this point in the history
  3. Revert "Merge pull request #1355 from enyojs/ENYO-2409-jeremythomas"

    This reverts commit 6e135af, reversing
    changes made to c0f9c3a.
    aarontam committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    89e0442 View commit details
    Browse the repository at this point in the history
  4. ENYO-3018: Change static members reference from '#' to '.'

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    6d072a5 View commit details
    Browse the repository at this point in the history
  5. ENYO-3020: Cleanup unnecessary comments

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    f998793 View commit details
    Browse the repository at this point in the history
  6. PLAT-15389: Allow for clearing of queue for pops without a correspond…

    …ing history entry.
    
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    b85eedf View commit details
    Browse the repository at this point in the history
  7. ENYO-2409: Fix Windows 10 app deployment/innerHTML issue

    jeremy.thomas committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    918ab70 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1297 from enyojs/ENYO-2621-aarontam

    ENYO-2621: Add support for specifying default component properties.
    webOS101 committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    587cf6b View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1360 from enyojs/ENYO-3020-stephenchoi

    ENYO-3020: Cleanup unnecessary comments
    webOS101 committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    58eeb77 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #1361 from enyojs/ENYO-2409-jeremythomas

    ENYO-2409: Fix Windows 10 app deployment/innerHTML issue
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    f7c7c08 View commit details
    Browse the repository at this point in the history
  11. ENYO-3016: Fixing merge conflict

    jeremy.thomas committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    07fdb56 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2016

  1. PLAT-15150: Fix the popOnBack property so that it takes precedence ov…

    …er cacheViews.
    
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 22, 2016
    Configuration menu
    Copy the full SHA
    e41dcb7 View commit details
    Browse the repository at this point in the history
  2. Revert "ENYO-2592: Undefer purging."

    This reverts commit 73d3cd5.
    aarontam committed Jan 22, 2016
    Configuration menu
    Copy the full SHA
    373bcfb View commit details
    Browse the repository at this point in the history
  3. PLAT-15150: Purge panels after running transition lifecycle methods.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 22, 2016
    Configuration menu
    Copy the full SHA
    b64181f View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2016

  1. PLAT-15150: Refine panel removal and end-of-transition logic.

    Add popView method to ViewPreloadSupport.
    aarontam committed Jan 23, 2016
    Configuration menu
    Copy the full SHA
    4a073af View commit details
    Browse the repository at this point in the history
  2. ENYO-3031: Fix broken comment block

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi committed Jan 23, 2016
    Configuration menu
    Copy the full SHA
    85298e0 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2016

  1. ENYO-3018: Fix additional references to enyo.*

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    101218a View commit details
    Browse the repository at this point in the history
  2. Fix documentation of statics

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    c150264 View commit details
    Browse the repository at this point in the history
  3. Tweak relational options slightly

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    93c60ec View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1363 from enyojs/ENYO-3031-stephenchoi

    ENYO-3031: Fix broken comment block
    webOS101 committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    4285730 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1359 from enyojs/ENYO-3018-roysutton

    ENYO-3018 Correct badly doc'ed types
    
    Reviewed-By: Stephen Choi (stephen.choi@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    8e1f275 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2016

  1. guard against shifting onhold events for cancelled holds

    If endHold() is called during a hold event handlers, this._unsent will
    be nulled which causes an exception because it is assumed to be an
    array. Adding a truthy guard to ensure that the next event is only
    shifted if it hasn't been cleared.
    
    Issue: ENYO-3038
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Jan 26, 2016
    Configuration menu
    Copy the full SHA
    4fb9199 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2016

  1. Merge pull request #1365 from enyojs/ENYO-3038-ryanjduffy

    Fixes ENYO-3038
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 27, 2016
    Configuration menu
    Copy the full SHA
    f182384 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2016

  1. clean up drag status ondragfinish

    Previous assumption was that resetting the drag status on start would
    be sufficient but a left over dragView can be inadvertently removed
    when a drag on a contained ViewManager isn't handled and it propagates
    up to the parent VM.
    
    Issue: ENYO-3037
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Jan 28, 2016
    Configuration menu
    Copy the full SHA
    5355e3d View commit details
    Browse the repository at this point in the history
  2. Update documentation for ViewManager

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 28, 2016
    Configuration menu
    Copy the full SHA
    028963a View commit details
    Browse the repository at this point in the history
  3. ENYO-3047 Update (allthedependencies)

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 28, 2016
    Configuration menu
    Copy the full SHA
    3b6f01b View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2016

  1. Merge pull request #1364 from enyojs/ENYO-3037-ryanjduffy

    Fixes ENYO-30307 allow dragstart to propagate from ViewManager
    
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    f7a7726 View commit details
    Browse the repository at this point in the history
  2. ENYO-3049: Calculate bounds when shown

    `enyo/Scrollable` has a `calcBoundaries()` method that it uses
    internally and exposes publicly to ensure that a scrollable Control
    stays up to date with respect to its own size and the size of its
    contents.
    
    In this change, we add a call to `calcBoundaries()` when the
    scrollable Control is shown to ensure the boundaries are correct,
    taking into account any changes that may have occurred while the
    Control was hidden.
    
    This change was prompted by ENYO-3049, in which the scroll
    boundaries and position were inaccurate after hiding NewDataList,
    removing items from its backing collection, and then re-showing
    the list.
    
    We chose this simple fix over more complicated alternatives,
    including deferring calls to `calcBoundaries()` when the
    scrollable Control was hidden and then calling it only when
    necessary in `showingChangedHandler()`. In truth, there are
    probably a bunch of things in Scrollable that can / should be
    deferred when the Control is hidden, but we'll save that larger
    effort until we know it's needed.
    
    Enyo-DCO-1.1-Signed-Off-By: Gray Norton (gray.norton@lge.com)
    Gray Norton committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    551b8b8 View commit details
    Browse the repository at this point in the history
  3. ENYO-3053: Mark TransitionScrollStrategy as WIP.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    dcc85ec View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1369 from enyojs/ENYO-3053-aarontam

    ENYO-3053: Mark TransitionScrollStrategy as WIP.
    webOS101 committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    d8c08f7 View commit details
    Browse the repository at this point in the history
  5. ENYO-1810 Cleanup in-line samples for modules

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    50a008c View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1371 from enyojs/ENYO-1810-roysutton

    ENYO-1810 Cleanup in-line samples for modules
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    09bd9b4 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2016

  1. Merge pull request #1317 from enyojs/viewmanager

    Fixes PLAT-7048
    webOS101 committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    d876344 View commit details
    Browse the repository at this point in the history
  2. remove observers on destroy

    Remove all observers from an object when destroyed to release any
    memory retained by references to destroyed objects in the observerTable
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    69a1267 View commit details
    Browse the repository at this point in the history
  3. remove event listeners on destroy

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    6bfe76a View commit details
    Browse the repository at this point in the history
  4. remove models from collection when destroying

    Ensures that the event listeners added to each model are removed
    thereby deferencing the collection from the EventEmitter eventTable.
    
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    50ed0ca View commit details
    Browse the repository at this point in the history
  5. ensure each instance of Collection get its own copy of options

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    3154965 View commit details
    Browse the repository at this point in the history
  6. delete observerTable and eventTable entries when removing all

    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 3, 2016
    Configuration menu
    Copy the full SHA
    87d1161 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2016

  1. ENYO-2913: Make return values and error conditions consistent.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 4, 2016
    Configuration menu
    Copy the full SHA
    993f61c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1343 from enyojs/ENYO-2913-aarontam

    ENYO-2913: Prevent concurrent transitions when setupTransitions is triggered via an index change or animateTo call.
    webOS101 committed Feb 4, 2016
    Configuration menu
    Copy the full SHA
    2dfe05b View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2016

  1. Configuration menu
    Copy the full SHA
    3f6dda5 View commit details
    Browse the repository at this point in the history
  2. ENYO-3078 Updated Docs to prevent duplicate modules

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Feb 5, 2016
    Configuration menu
    Copy the full SHA
    60e3e0f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    96efc65 View commit details
    Browse the repository at this point in the history
  4. complete outstanding transition when registering a new transition

    There are a couple scenarios in which a transition might not complete
    before another is registered possibly causing layout completion
    activities to be skipped. To avoid this, mark any incomplete
    transitions complete so the callback can fire to clean up before
    registering the new transition.
    
    Issue: ENYO-3071
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 5, 2016
    Configuration menu
    Copy the full SHA
    1daed0c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1373 from enyojs/ENYO-3080-jasonrobitaille

    ENYO-3080: requestAnimationFrame not in usage for iOS >=7
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 5, 2016
    Configuration menu
    Copy the full SHA
    7c7b23c View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2016

  1. Update ms gesture conditional

    jeremy.thomas committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    81f039d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1358 from enyojs/ENYO-3016-jeremythomas2

    ENYO-3016: Fix touch-gesture platform identification for Windows 10, …
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    2bec3fc View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2016

  1. Merge pull request #1368 from enyojs/ENYO-3047

    ENYO-3047 Update (allthedependencies)
    
    Reviewed-By: Ryan Duffy (ryan.duffy@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 9, 2016
    Configuration menu
    Copy the full SHA
    8f6cf5b View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2016

  1. ENYO-2951: Expose transitioning property via a public method.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    195278b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1375 from enyojs/ENYO-3071-ryanjduffy

    Fixes ENYO-3071
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    1d0d8af View commit details
    Browse the repository at this point in the history
  3. apply translate3d to views to force compositing during dragging

    Issue: PLAT-14017
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy authored and aarontam committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    0f90408 View commit details
    Browse the repository at this point in the history
  4. fix CSS ordering for active view positioning

    Moving it up for DRY-ness broke the transition. /sadtrombone
    
    Issue: PLAT-14017
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy authored and aarontam committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    9d35338 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1380 from enyojs/PLAT-14017-ryanjduffy-2.6.1-pre.6

    PLAT-14017
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    bd60c0c View commit details
    Browse the repository at this point in the history
  6. clear the model for unrendered rows of a DataRepeater

    Issue: ENYO-2867
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    defaa5c View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2016

  1. Merge pull request #1370 from enyojs/ENYO-3049-graynorton

    ENYO-3049: Calculate bounds when shown
    
    Reviewed-By: Kunmyon Choi (kunmyon.choi@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    74b6a28 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1366 from enyojs/PLAT-15389-aarontam

    PLAT-15389: Allow for clearing of queue for pops without a corresponding history entry.
    webOS101 committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    a3a2e09 View commit details
    Browse the repository at this point in the history
  3. PLAT-15150: Clean-up cruft, add documentation.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    f4639ff View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1c40cea View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2016

  1. Clarified LightPanel should not be required directly

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Feb 12, 2016
    Configuration menu
    Copy the full SHA
    ee1a181 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2016

  1. Doc LightPanel to be part of LightPanels again

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Feb 13, 2016
    Configuration menu
    Copy the full SHA
    e716ece View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2016

  1. Merge pull request #1374 from enyojs/ENYO-3078-roysutton

    ENYO-3078 Updated Docs to prevent duplicate modules
    
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 15, 2016
    Configuration menu
    Copy the full SHA
    5e6482d View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2016

  1. ENYO-3011: Ensure that transition clean-up logic is always executed.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 16, 2016
    Configuration menu
    Copy the full SHA
    c42b810 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2016

  1. Merge pull request #1362 from enyojs/PLAT-15150-aarontam

    PLAT-15150: Fix issues with destruction.
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 17, 2016
    Configuration menu
    Copy the full SHA
    17c5604 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1376 from enyojs/ENYO-2951-aarontam

    ENYO-2951: Expose transitioning property via a public method.
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 17, 2016
    Configuration menu
    Copy the full SHA
    bcacfc2 View commit details
    Browse the repository at this point in the history
  3. ENYO-3011: The fallback should not run faster than the transition; re…

    …moving offset.
    
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 17, 2016
    Configuration menu
    Copy the full SHA
    0008016 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2016

  1. Merge pull request #1381 from enyojs/ENYO-2867-ryanjduffy

    Fixes ENYO-2867 clear the model for unrendered rows of a DataRepeater
    
    Reviewed-By: Jeremy Thomas (jeremy.thomas@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 18, 2016
    Configuration menu
    Copy the full SHA
    0688a9b View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2016

  1. ENYO-3112: Update documentation.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    c0cc936 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1386 from enyojs/ENYO-3112-aarontam

    ENYO-3112: Update documentation.
    webOS101 committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    b6961c8 View commit details
    Browse the repository at this point in the history
  3. ENYO-3098: Switch to a logical panel after replacement occurs.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    c866d97 View commit details
    Browse the repository at this point in the history
  4. refactor RelationalModel + deps to correct string and circular refs

    In order to eliminate string references to kindNames and avoid circular
    dependencies between the private kinds used by RelationalModel, some
    refactoring was required including some post-kind setup in the module's
    index.js
    
    Issue: ENYO-3033
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    bacdff9 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/2.6.0-dev' into ENYO-2990-ryanjd…

    …uffy
    Ryan Duffy committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    52bcff6 View commit details
    Browse the repository at this point in the history
  6. guard getRelations against nulled this.relations

    If a RelationalModel particpates in a binding, it may be accessed after
    it is destroyed. Because it overrides get() to interrogate its related
    models, if it had been destroyed the array of models would have been
    nulled causing a runtime error.
    
    Issue: ENYO-2990
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    09685f8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1382 from enyojs/ENYO-3033-ryanjduffy

    Fixes ENYO-3033
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    5bc95ff View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2016

  1. Merge branch '2.6.0-dev' into ENYO-2990-ryanjduffy

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    Roy Sutton committed Feb 22, 2016
    Configuration menu
    Copy the full SHA
    a3d6e07 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1372 from enyojs/ENYO-2990-ryanjduffy

    Fixes ENYO-2990
    webOS101 committed Feb 22, 2016
    Configuration menu
    Copy the full SHA
    731a196 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2016

  1. add docs for RepeaterChildSupport#selectedClass

    Issue: ENYO-3126
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Feb 24, 2016
    Configuration menu
    Copy the full SHA
    7307863 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1392 from enyojs/ENYO-3126-ryanjduffy

    Fixes ENYO-3126 add docs for RepeaterChildSupport#selectedClass
    webOS101 committed Feb 24, 2016
    Configuration menu
    Copy the full SHA
    d1b7f21 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2016

  1. ENYO-2718: Added ShowingTransitionSupport, a mixin to make showing/hi…

    …ding animations easier.
    
    Squashed commit history
    
    Take advantage of utils.call, and don't double-bind-safely.
    Docs update, and moving control to WIP.
    Enyo-DCO-1.1-Signed-off-by: Blake Stephens <blake.stephens@lge.com>
    
    Fixup docs
    Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
    
    Adding a default for shownClass simplifies the usage a bit in many cases.
    Added support for methods to be called out of immediate scope, and hardening of unexpected duration changes.
    Enyo-DCO-1.1-Signed-off-by: Blake Stephens <blake.stephens@lge.com>
    
    ENYO-2718: Update caching of shown and hidden method scopes.
    ENYO-2718: Re-add variable assignment for proper module documentation.
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    
    Methods should run even if there's no duration
    Normalized the order of the method execution across all 4 cases.
    
    Enyo-DCO-1.1-Signed-off-by: Blake Stephens <blake.stephens@lge.com>
    Blake Stephens authored and Ryan Duffy committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    869e812 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1394 from enyojs/ENYO-2718-ryanjduffy

    ENYO-2718: Added ShowingTransitionSupport, a mixin to make showing/hiding animations easier.
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    1b24f62 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1384 from enyojs/ENYO-3011-aarontam

    ENYO-3011: Ensure that transition clean-up logic is always executed.
    webOS101 committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    79c164e View commit details
    Browse the repository at this point in the history
  4. ENYO-3130: touch/gesture fix

    jeremy.thomas committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    916756d View commit details
    Browse the repository at this point in the history
  5. spacing

    jeremy.thomas committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    e98d57f View commit details
    Browse the repository at this point in the history
  6. spacing

    jeremy.thomas committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    77ab9ca View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2016

  1. Initial version for scene changes

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    26bbadc View commit details
    Browse the repository at this point in the history
  2. update gesture conditional

    jeremy.thomas committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    11e1394 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2016

  1. Merge pull request #1388 from enyojs/ENYO-3098-aarontam

    ENYO-3098: Switch to a logical panel after replacement occurs.
    webOS101 committed Feb 27, 2016
    Configuration menu
    Copy the full SHA
    06bc5d9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1397 from enyojs/ENYO-3130-jeremythomas

    ENYO-3130: Touch/gesture fix
    webOS101 committed Feb 27, 2016
    Configuration menu
    Copy the full SHA
    4d47a38 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2016

  1. some changes related to threshold

    System Administrator authored and System Administrator committed Feb 28, 2016
    Configuration menu
    Copy the full SHA
    a1fe229 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2016

  1. ENYO-3144: Use container-based infrastructure for Travis.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Feb 29, 2016
    Configuration menu
    Copy the full SHA
    53370c8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1401 from enyojs/ENYO-3144-aarontam

    ENYO-3144: Use container-based infrastructure for Travis.
    webOS101 committed Feb 29, 2016
    Configuration menu
    Copy the full SHA
    8d51f6f View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2016

  1. Configuration menu
    Copy the full SHA
    a4de09e View commit details
    Browse the repository at this point in the history
  2. threshold with scene

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Mar 1, 2016
    Configuration menu
    Copy the full SHA
    d469c33 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2016

  1. ENYO-1998: Return source action result on execute

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    
    ENYO-1998: Return array of results in case of multiple sources
    
    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    
    ENYO-1998: Remove forEach and cleanup
    
    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi authored and aarontam committed Mar 4, 2016
    Configuration menu
    Copy the full SHA
    ea4496e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1403 from enyojs/ENYO-1998-aarontam

    ENYO-1998: Return source action result on execute
    
    Reviewed-By: Ryan Duffy (ryan.duffy@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 4, 2016
    Configuration menu
    Copy the full SHA
    467fe7b View commit details
    Browse the repository at this point in the history
  3. updates related to layer optimization

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Mar 4, 2016
    Configuration menu
    Copy the full SHA
    e7cf74d View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2016

  1. Added multiple roleplay changes

    System Administrator authored and System Administrator committed Mar 6, 2016
    Configuration menu
    Copy the full SHA
    5b2d7f0 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2016

  1. ENYO-3174: Deprecate unstable APIs.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    8b9c7ae View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1407 from enyojs/ENYO-3174-aarontam

    ENYO-3174: Deprecate unstable APIs.
    webOS101 committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    c4f59a0 View commit details
    Browse the repository at this point in the history
  3. ENYO-3175: Added support for Mozilla based browsers

    Enyo-DCO-1.1-Signed-off-by: Blake Stephens <blake.stephens@lge.com>
    
    Slightly simpler code for transform
    
    Enyo-DCO-1.1-Signed-off-by: Blake Stephens <blake.stephens@lge.com>
    Blake Stephens authored and Ryan Duffy committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    30a9bda View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1405 from enyojs/ENYO-3175-blakestephens

    ENYO-3175: Added support for Mozilla based browsers
    ryanjduffy committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    4418b94 View commit details
    Browse the repository at this point in the history
  5. ENYO-3164: Make Control be the default kind.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    048fac4 View commit details
    Browse the repository at this point in the history
  6. ENYO-3184: Deprecate srcElement property for generated media events.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Mar 8, 2016
    Configuration menu
    Copy the full SHA
    9070d89 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7642bea View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2016

  1. ENYO-3019: Remove IE8 support

    More IE8 support removal
    
    string change
    
    remove ie8 polyfills
    
    Remove module refs
    
    IE8 support removal fixes
    
    remove forEach-map-filter array polyfills
    
    remove additional ie8 code
    jeremy.thomas authored and aarontam committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    7f20067 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1387 from enyojs/ENYO-3019-jeremythomas

    ENYO-3019: IE8 Support Removal
    
    Reviewed-By: Ryan Duffy (ryan.duffy@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    579d9b9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1408 from enyojs/ENYO-3184-aarontam

    ENYO-3184: Remove srcElement property for generated media events.
    webOS101 committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    d313280 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1406 from enyojs/ENYO-3164-aarontam

    ENYO-3164: Make Control be the default kind.
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    6d8cfb9 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2016

  1. Updated seek changes

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    73ddb9b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7c932c View commit details
    Browse the repository at this point in the history
  3. ENYO-3192: Converting to single quotes.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    432fc12 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1409 from enyojs/ENYO-3192-jasonrobitaille

    ENYO-3192: Dispatcher not caching touch position as expected
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    2b9771e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2016

  1. updated scene active state

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Mar 11, 2016
    Configuration menu
    Copy the full SHA
    215a62b View commit details
    Browse the repository at this point in the history
  2. reverting usage of remove() for compatibility

    IE11 doesn't support node.remove() and the test for it fails for
    <select> elements which do have a remove method for another purpose.
    Since remove() is effectively just sugar, we remove it to ensure
    compatibility.
    
    Issue: ENYO-3208
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Mar 11, 2016
    Configuration menu
    Copy the full SHA
    aa64fa2 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2016

  1. adds guard for setting the value of a select box in IE/Edge

    Issue: ENYO-3204
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    3388090 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1415 from enyojs/ENYO-3204-ryanjduffy

    Fixes ENYO-3204 adds guard for setting the value of a select box in <= IE11
    
    Reviewed-by: Stephen Choi (stephen.choi@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    2fb2fef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    50fd24a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1413 from enyojs/ENYO-3208-ryanjduffy

    Fixes ENYO-3208
    webOS101 committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    6938d25 View commit details
    Browse the repository at this point in the history
  5. ENYO-3222: Adding support for cancelAnimationFrame.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    
    ENYO-3222: Use updated cancelAnimationFrame API.
    
    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    
    Update global references to requestAnimation frame, update prefix order
    
    Enyo-DCO-1.1-Signed-off-by: Roy Sutton roy.sutton@lge.com
    aarontam committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    d108536 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1414 from enyojs/ENYO-3222-aarontam

    ENYO-3222: Adding support for cancelAnimationFrame.
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    4fc2cbb View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2016

  1. ENYO-3210: Added better support for trackpad scrolling in Firefox.

    Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
    aarontam authored and Ryan Duffy committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    bc56cab View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1419 from enyojs/ENYO-3210-aarontam

    ENYO-3210: Added better support for trackpad scrolling in Firefox.
    
    Reviewed-By: Blake Stephens (blake.stephens@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    c2ceab3 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2016

  1. Configuration menu
    Copy the full SHA
    3834d96 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2016

  1. ENYO-3219: Refresh scroll thresholds when adding / removing models

    If a list is scrolled to the end and the size of the collection
    changes, we need to recalculate the scroll thresholds and possibly
    adjust the range of items to be rendered.
    
    Until now, we've only adjusted thresholds in the `scroll()` method,
    based on the direction and distance we've scrolled. In this fix, we
    add a new method, `refreshThresholds()`, which recalculates the
    thresholds based on the current scroll value. We call the new
    method from `modelsAdded()` and `modelsRemoved()` to make sure that
    the thresholds and item range are correct after the size of the
    collection has changed.
    
    Enyo-DCO-1.1-Signed-Off-By: Gray Norton (gray.norton@lge.com)
    Gray Norton committed Mar 21, 2016
    Configuration menu
    Copy the full SHA
    8773568 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b232582 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1422 from enyojs/ENYO-3219-graynorton

    ENYO-3219: Refresh scroll thresholds when adding / removing models
    
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 21, 2016
    Configuration menu
    Copy the full SHA
    15d9883 View commit details
    Browse the repository at this point in the history
  4. ENYO-3247 Correct docs for strategyKind

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton roy.sutton@lge.com
    Roy Sutton committed Mar 21, 2016
    Configuration menu
    Copy the full SHA
    d29bca3 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2016

  1. ENYO-3227: Recalculate metrics on showing

    Issue:
    NewThumb is measure bounds of its parent on render time to determine
    minSizeRatio and naturalSize. If list is initially hidden and show
    later, these metrics are not updated.
    
    Fix:
    Call calculateMetrics in showingChangedHandler on showing.
    
    Enyo-DCO-1.1-Signed-off-by: Kunmyon Choi kunmyon.choi@lge.com
    
    Small tweak to super call and calc placement
    
    Enyo-DCO-1.1-Signed-off-by: Roy Sutton roy.sutton@lge.com
    
    Check getAbsoluteShowing instead of showing
    KunmyonChoi authored and Ryan Duffy committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    16c21f8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1420 from enyojs/ENYO-3227-kunmyonchoi

    ENYO-3227: Recalculate metrics on showing
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    e3a7f63 View commit details
    Browse the repository at this point in the history
  3. ENYO-3138: Recalculate scroll thumb metrics on resize

    Issue:
    NewThumb is created from scratch to support new smart share use case. Now we have new use case of resize the new data list at runtime. And, current version of scroll thumb doesn't include that logic.
    
    Fix:
    Recalculate metrics on resize handler. So that it can draw itself in correct size and position.
    
    Enyo-DCO-1.1-Signed-Off-By: Kunmyon Choi (kunmyon.choi@lge.com)
    
    Adding back wip comment
    
    Add super call
    
    Add check for getAbsoluteBounds to avoid unnecessary calculation.
    KunmyonChoi authored and Ryan Duffy committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    4bb2243 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1410 from enyojs/ENYO-3138-kumyonchoi

    ENYO-3138: Recalculate scroll thumb metrics on resize
    
    Reviewed-By: Aaron Tam (aaron.tam@lge.com)
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    529eb8b View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2016

  1. Added handlelayer property and some issues.

    - handleLayer to control GPU usage.
    - updated repeat changes.
    - dom property updates as CSStext.
    - Scene to handle single components too.
    
    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    d4374f8 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2016

  1. Merge pull request #1427 from enyojs/ENYO-3247-roysutton

    ENYO-3247 Correct docs for strategyKind
    
    Integrated-By: Ryan Duffy (ryan.duffy@lge.com)
    ryanjduffy committed Mar 24, 2016
    Configuration menu
    Copy the full SHA
    4c289a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2016

  1. guard setting Video current time from Infinity

    Because who wants to watch Interstellar
    
    Issue: ENYO-3093
    Enyo-DCO-1.1-Signed-off-by: Ryan Duffy (ryan.duffy@lge.com)
    Ryan Duffy committed Mar 25, 2016
    Configuration menu
    Copy the full SHA
    dcea655 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1428 from enyojs/ENYO-3093-ryanjduffy

    Fixes ENYO-3093 guard setting Video current time from Infinity
    
    Reviewed-By: Blake Stephens (blake.stephens@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 25, 2016
    Configuration menu
    Copy the full SHA
    9ddc019 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2016

  1. ENYO-3158: Adjust Buffer size based on item size and count

    Issue:
    We use page concept on DataList and DataGridList. When item count is not devided by controls per page, last page can have different page height from others. The adjustBuffer function of VerticalDelegate and VerticalGridDelegate calculate buffer size by accumulating page size. But, we use default page size when the page is not generated yet. So, the buffer size is different between before and after generating the last page.
    
    Fix:
    Calculate buffer size based on item size and item collection length instead of page size and page height. And divide item collection length by number of columns in case of GridList.
    
    Enyo-DCO-1.1-Signed-off-by: Kunmyon Choi kunmyon.choi@lge.com
    KunmyonChoi authored and aarontam committed Mar 26, 2016
    Configuration menu
    Copy the full SHA
    40874a1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1402 from enyojs/ENYO-3158-kunmyonchoi

    ENYO-3158: Adjust Buffer size based on item size and count
    
    Reviewed-By: Roy Sutton (roy.sutton@lge.com)
    Integrated-By: Aaron Tam (aaron.tam@lge.com)
    aarontam committed Mar 26, 2016
    Configuration menu
    Copy the full SHA
    4fb859b View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2016

  1. ENYO-3261: Update default scrollStrategy for iOS devices

    Enyo-DCO-1.1-Signed-off-by: Stephen Choi <stephen.choi@lge.com>
    Stephen Choi committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    893666e View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2016

  1. Documentation for WIP features:

    * VirtualDataRepeater
    * Scrollable
    * NewDataList
    * NewThumb
    * NewDrawer
    
    Enyo-DCO-1.1-Signed-Off-By: Gray Norton (gray.norton@lge.com)
    Gray Norton committed Mar 29, 2016
    Configuration menu
    Copy the full SHA
    5e31464 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1433 from enyojs/ENYO-3261-stephenchoi

    ENYO-3261: Update default scrollStrategy for iOS devices
    webOS101 committed Mar 29, 2016
    Configuration menu
    Copy the full SHA
    bf895ad View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2016

  1. Updated some documentation

    Enyo-DCO-1.1-Signed-off-by: Roy Sutton roy.sutton@lge.com
    Roy Sutton committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    7ce9912 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1434 from enyojs/ENYO-2133-graynorton

    Documentation for WIP features:
    webOS101 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    16f1bdb View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2016

  1. Configuration menu
    Copy the full SHA
    f5bef20 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2016

  1. Merge Frame in Matrix, Dom and Utils

    Extra support for animation like color, shadow and border related
    animation also introduced.
    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    3b732e6 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2016

  1. some fixes

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan(anish.ramesan@lge.com)
    anishramesan committed Apr 7, 2016
    Configuration menu
    Copy the full SHA
    5f8657d View commit details
    Browse the repository at this point in the history
  2. Refracting frame changes properly

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 7, 2016
    Configuration menu
    Copy the full SHA
    7b47f71 View commit details
    Browse the repository at this point in the history
  3. Removed director module

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Apr 7, 2016
    Configuration menu
    Copy the full SHA
    4d6b68d View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2016

  1. Removal of Easing and some bug fixing

    Bug fixing related to fixed size array used to push among intermediate
    points in case of custom easing.
    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    477757e View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2016

  1. Merge pull request #1436 from enyojs/2.6.0-dev

    Merge 2.6.0-dev into master.
    webOS101 committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    5933e3d View commit details
    Browse the repository at this point in the history
  2. Merge Frame and Matrix into Transform

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    8579a4b View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2016

  1. Remove duplicate codes and maintain JS standards

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    8ccfcdb View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2016

  1. Reduce multiple loops from inverseN

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    057e19d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5582d38 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    86c2b88 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2016

  1. Remove useless calculation and made easing globe

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    49d6a96 View commit details
    Browse the repository at this point in the history
  2. transform and tween brought up

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    ba232be View commit details
    Browse the repository at this point in the history
  3. Merge branch 'ENYO_2174-sceneapproach' of https://github.com/enyojs/enyo

     into ENYO_2174-sceneapproach
    anishramesan committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    412a04f View commit details
    Browse the repository at this point in the history
  4. Add matrix and vector module within transform

    Add matrix related modules within matrix module and vector related
    module within vector module.
    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    a5eaae1 View commit details
    Browse the repository at this point in the history
  5. Separate vector and quaternion modules

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    00d6db0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    460c0ec View commit details
    Browse the repository at this point in the history
  7. Merge branch 'ENYO_2174-sceneapproach' of https://github.com/enyojs/enyo

     into ENYO_2174-sceneapproach
    anishramesan committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    9b2a5cc View commit details
    Browse the repository at this point in the history
  8. Scene and actor module updates

    Enyo-DCO-1.1-Signed-off-by: Anish Ramesan<anish.ramesan@lge.com>
    anishramesan committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    67191bc View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2016

  1. Some fix related to custome ease in rotate

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 21, 2016
    Configuration menu
    Copy the full SHA
    3d24e67 View commit details
    Browse the repository at this point in the history
  2. Update in dom

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 21, 2016
    Configuration menu
    Copy the full SHA
    5913059 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2016

  1. Extended support for various transform properties

    Added support for properties like translateX, rotateY, scaleZ, skewX
    etc.
    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 25, 2016
    Configuration menu
    Copy the full SHA
    81725fb View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2016

  1. Handled multiple transform espacially rotation

    With addition of various css like transform properties, e.g. translateX,
    rotateY etc, now we added support for multiple transform property within
    same animation like translateX and translateY. We also handled rotation
    property as it is not commutative.
    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed Apr 26, 2016
    Configuration menu
    Copy the full SHA
    9720fc9 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2016

  1. Configuration menu
    Copy the full SHA
    62a91ba View commit details
    Browse the repository at this point in the history

Commits on May 2, 2016

  1. Configuration menu
    Copy the full SHA
    a6b9346 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2016

  1. Some bug fixed

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed May 4, 2016
    Configuration menu
    Copy the full SHA
    fbafd35 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2016

  1. Configuration menu
    Copy the full SHA
    5ce28d8 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2016

  1. Maintained code standered

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed May 11, 2016
    Configuration menu
    Copy the full SHA
    297f4e1 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2016

  1. Add delay support

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed May 12, 2016
    Configuration menu
    Copy the full SHA
    115ce05 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2016

  1. Configuration menu
    Copy the full SHA
    bd613cd View commit details
    Browse the repository at this point in the history

Commits on May 18, 2016

  1. Add iteration support and some bug fixed

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed May 18, 2016
    Configuration menu
    Copy the full SHA
    ebc6d27 View commit details
    Browse the repository at this point in the history
  2. Fixed bug with repeat senario

    Enyo-DCO-1.1-Signed-off-by: Ankur Mishra<ankur.mishra@lge.com>
    ankurmishra32 committed May 18, 2016
    Configuration menu
    Copy the full SHA
    4474d36 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    76148ce View commit details
    Browse the repository at this point in the history