generator-nww
Version:
Yeoman generator for NW.js, Angular, [Bootstrap+Jquery] and Node
24 lines (20 loc) • 436 B
JavaScript
;
/**
* @ngdoc function
* @name <%= scriptAppName %>.<%= classedName %>
* @description
* # <%= classedName %>
* Factory in the <%= scriptAppName %>
*/
angular.module('<%= scriptAppName %>')
.factory('<%= classedName %>', function () {
// Service logic
// ...
var meaningOfLife = 42;
// Public API here
return {
someMethod: function () {
return meaningOfLife;
}
};
});