I had an application made previously on angular 1.3, which had some dependencies then. The structure is:
<script>.....angular1.3</script><html ng-app="myprevapp">......</html>
Now i have a new app
<script>.....angular1.4</script><html ng-app="mynewapp">......</html>
Now what i want is to use my previous app as a widget in my new app.How to achieve this?
I have some libraries in "myprevapp" which runs fine for angular1.3 fine,i don't have much of a time to migrate it to 1.4 and test it.
I want to lessen the development efforts. Please advice some judicious way.
Thanks in advance!