I have Two Projects and i want to merge them ine one File JavaScript
Project : 1
File : App.Js
var app = angular.module('PegaseApp', ['ngTouch', 'SignalR', 'ui.grid', 'ui.grid.selection', 'ui.grid.resizeColumns', 'ui.bootstrap', 'ui.bootstrap.datetimepicker', 'AxelSoft']);
File : Intervention.Js
angular.module('PegaseApp')
.controller('MainCtrl', ['$rootScope', '$scope', 'HubManager', function ($rootScope, $scope, HubManager) {
........
} );
Project : 2
File : spl.Js
angular.module('myApp', ['bgDirectives']);
angular.module('bgDirectives', [])
.directive('bgSplitter', function () {
..........
});
The expected result is to combine this two projects in one File Javascript and one File Html
Benmakhlouf SaadPosted Nov 9, 2016, 4:02 AM
Tejas TrivediPosted Nov 8, 2016, 11:38 PM
Madhanmohan DevarajanPosted Nov 8, 2016, 12:16 PM