"use strict";
// make a common module
angular.module("common",[])
.filter("someFilter", function (){
return function (text) {
return text;
};
});
// use it
angular.module("app",["common"]);
"use strict";
// make a common module
angular.module("common",[])
.filter("someFilter", function (){
return function (text) {
return text;
};
});
// use it
angular.module("app",["common"]);