Skip to content

Instantly share code, notes, and snippets.

@shengoo
Created December 3, 2014 06:35
Show Gist options
  • Save shengoo/e6bbcc2c4ef336532eb7 to your computer and use it in GitHub Desktop.
Save shengoo/e6bbcc2c4ef336532eb7 to your computer and use it in GitHub Desktop.
angularjs shared module
"use strict";
// make a common module
angular.module("common",[])
.filter("someFilter", function (){
return function (text) {
return text;
};
});
// use it
angular.module("app",["common"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment