Avada includes a blog shortcode you can use anywhere on the site!
This blog shortcode was submitted by Markus, one of our Avada users and now on our developing team! It just goes to show what an awesome community we have, everyone is willing to help & share ideas. Dont wait, be a part of the Avada community today!
Emacs – cheat sheet
Underscore.js – cheat sheet
var jossWhedon = { age: 49, occupations: ["writer", "director", "producer", "composer", "actor"], shows: [ { title: "Dollhouse", femaleLead: true, characters: [ { name: "Echo", role: "doll" }, { name: "Topher", role: "mad scientist" }] }, [...]
Creating new Restangular Methods
// In your app configuration (config method) RestangularProvider.addElementTransformer('users', true, function(user) { // This will add a method called login that will do a POST to the path login // signature is (name, operation, path, params, [...]
AngularJS data model
As we already know, AngularJS doesn’t come with an out of the box solution for data modeling. In the most abstract way, AngularJS lets us use JSON data as a model in the controller. As [...]