Created
February 16, 2015 23:21
-
-
Save rxw1/8777f753c3df4a65d3cf to your computer and use it in GitHub Desktop.
angular + ngCordova + template/stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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