Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pankajparkar/gridstack-angular
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: predorock/gridstack-angular
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 39 files changed
  • 3 contributors

Commits on Mar 5, 2016

  1. Update to gridstack.js 0.2.5

    Kevin Dietrich committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    fff27f8 View commit details
    Browse the repository at this point in the history
  2. Updated demo dependencies

    Kevin Dietrich committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    7a69940 View commit details
    Browse the repository at this point in the history
  3. Built dist

    Kevin Dietrich committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    e6d3a39 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2016

  1. Released v.0.4.0

    Kevin Dietrich committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    1059871 View commit details
    Browse the repository at this point in the history
  2. Back to development

    Kevin Dietrich committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    41abef3 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2016

  1. Expose gridstack object to Directive

    In order to access gridstack's API within AngularJS application. We need to expose `gridstack` object which was created in `GridstackController`.
    
    **Usage:**
    
    When init the HTML template for gridstack:
    
    ```html
    <div gridstack gridstack-handler="gridstacker" options="options">
       ...
    </div>
    ```
    
    In your AngularJS application:
    
    ```js
    $scope.gridstacker = null;
    ```
    
    Don't forget to check for `gridstacker` availability before using:
    
    ```js
    if ($scope.gridstacker) {
        $scope.gridstacker.removeAll(); // example: call removeAll() API
    }
    ```
    huytd committed May 3, 2016
    Configuration menu
    Copy the full SHA
    4e4662d View commit details
    Browse the repository at this point in the history

Commits on May 24, 2016

  1. Merge pull request #6 from huytd/master

    Expose gridstack object to Directive
    Kevin Dietrich committed May 24, 2016
    Configuration menu
    Copy the full SHA
    e491c3c View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2016

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