Skip to content

Instantly share code, notes, and snippets.

View valerybugakov's full-sized avatar
✌️

Valery Bugakov valerybugakov

✌️
View GitHub Profile
@valerybugakov
valerybugakov / Git push deployment in 7 easy steps.md
Created March 31, 2016 05:17 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook

AngularJS Directive Attribute Binding Explanation

When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.

  1. Raw Attribute Strings

    <div my-directive="some string" another-param="another string"></div>