Skip to content

Instantly share code, notes, and snippets.

@rxw1
Created February 16, 2015 23:21
Show Gist options
  • Save rxw1/8777f753c3df4a65d3cf to your computer and use it in GitHub Desktop.
Save rxw1/8777f753c3df4a65d3cf to your computer and use it in GitHub Desktop.
angular + ngCordova + template/stuff
(function() {
'use strict';
/* global angular */
var app = angular.module('bidos', [
'ngCordova'
]);
app.controller('appCtrl', [function() {
angular.extend(this, {
date: function() {
return new Date();
}
});
}]);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment