ENDRPrint/.svn/pristine/da/da26779c318420feb701c957a69a5227d07a035f.svn-base

22 lines
618 B
Plaintext
Raw Normal View History

2024-08-14 10:33:27 +07:00
scotchApp.service('commonService', function($rootScope) {
var sharedService = {};
sharedService.dv = '';
sharedService.urlPath = "";
sharedService.setUrlPath = function(urlPath){
//this.jobStepList = [];
this.urlPath = urlPath;
// alert("urlPath >> "+this.urlPath);
// $rootScope.$broadcast("hdlBroadcastReceivedDate",new Date().getTime());
};
sharedService.setDv = function(dv){
this.dv=dv;
//for(var i=0;i<lstData.length;i++){
// this.mstMsgList[lstData[i].key] = lstData[i].value;
//}
};
return sharedService;
});