UNPKG

landers.angular

Version:

landers.angular

13 lines 469 B
;angular.module('Landers.angular') .factory('BaseService', ['Ajax', 'Runtime', function (Ajax, Runtime){ function BaseService(scope, extend, events){ this.ajax = Ajax.make(); this.runtime = Runtime.make(scope); angular.extend(this, extend || {}); } return { make:function(scope, extend, events) { return new BaseService(scope, extend, events); } }; }]);