SHARE
TWEET

Untitled

a guest Dec 27th, 2014 166 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. angular.module("app123",["app456"]).controller("simpleController",["factorySum",function(factorySum) {
  2.         this.sum = factorySum.total;
  3.         this.blah = factorySum.test;
  4. }]);
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. angular.module("app456",[]).factory("factorySum",function() {
  12.         var total = 10;
  13.        
  14.         var test = function() { console.log("called"); } ;
  15.  
  16.         return { total: total , test: test };
  17.  
  18. });
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top