18 lines
331 B
JavaScript
18 lines
331 B
JavaScript
//common function
|
|
define(["app", "moment"], function(app, moment) {
|
|
app.run(["$rootScope","$filter","config",function($rootScope,$filter,config) {
|
|
|
|
$rootScope.ud={
|
|
|
|
//functionName : Function;
|
|
|
|
test:function(){
|
|
$rootScope.showAlert('ABCD');
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
])
|
|
}); |