Skip to content

Instantly share code, notes, and snippets.

@phplaw
Created March 3, 2020 04:57
Show Gist options
  • Save phplaw/3e8359966b184538cd953039f4f965e9 to your computer and use it in GitHub Desktop.
Save phplaw/3e8359966b184538cd953039f4f965e9 to your computer and use it in GitHub Desktop.
AngularJS Tips & Tricks
$scope.foo = function($event, team) {
var $btn = $($event.currentTarget);
}
//html
/* <button type="button" ng-click="foo($event, team)">Edit</button> */
@phplaw
Copy link
Author

phplaw commented Apr 28, 2020

<!--
weekDay  = { Sunday: false, Monday: true, Tuesday: true .... };
-->
<p style="color: red" ng-show="ref.currentRepeatType == 'Weekly'">
                            (include <span ng-repeat="(day,check) in weekDay" ng-if="check">{{ day }} </span>)
</p>```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment