An open API service indexing awesome lists of open source software.

https://github.com/connor11528/gmail-clone

thinkful angular.js tutorial
https://github.com/connor11528/gmail-clone

Last synced: 3 months ago
JSON representation

thinkful angular.js tutorial

Awesome Lists containing this project

README

          

gmail-clone
====

### Filters

{{ [ firstName, lastName ].join(" ") }}

{{ cost * quantity | currency }}

{{ ( total > budget ) ? "Too Expensive" : "You can buy it!" }}

### Directive

app.directive('myCustomElement', function myCustomElement() {
return {
restrict: 'EA',
replace: true,
scope: true,
template: [
"

",
"

My Custom Element's Heading

",
"

Some content here!

",
"
{{ ctrl.expression | json }}
,"
"
"
].join(""),
controllerAs: 'ctrl',
controller: function ($scope) {
this.expression = {
property: "Example"
}
},
link: function (scope, element, attrs) {}
}
});