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

Add params as to function Fix #6 #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Nov 30, 2015

  1. Configuration menu
    Copy the full SHA
    ab9e0f1 View commit details
    Browse the repository at this point in the history
  2. Add params as to function

    Fix issue mgonto#6 adding params as array.
    
    Needs to pass as array while the function must be the first parameter.
    
    Usage:
    
    ```html
    
    <div w-mousetrap="{ a: [someFunc, scopeVariable, 'string variable'] }">
    ```
    
    ```javascript
    
    $scope.someFunc = function(event, params) {
        event.preventDefault();
        console.log("Super cool", params);
    };
    ```
    leocaseiro authored and leocaseiro committed Nov 30, 2015
    Configuration menu
    Copy the full SHA
    398e1c6 View commit details
    Browse the repository at this point in the history
  3. Fixed version to 0.2.0 bower, npm and Readme

    leocaseiro committed Nov 30, 2015
    Configuration menu
    Copy the full SHA
    ed02855 View commit details
    Browse the repository at this point in the history