Skip to content

Instantly share code, notes, and snippets.

View baskeboler's full-sized avatar
🏠
Working from home

Victor Gil baskeboler

🏠
Working from home
View GitHub Profile
@baskeboler
baskeboler / controller.js
Created May 15, 2015 10:27
angular controller
(function() {
'use strict';
angular.module('App').controller('Ctrl', Ctrl);
Ctrl.$inject = [];
function Ctrl() {
var vm = this;
}
})();