Is it possible to use a file (.js / .json) the angular.js cache for $http.get?
We have an angular application, and we want to download some pages and view them offline. So, the idea is, before downloading, we make all the necessary $http.get calls, and save the responses in some json / js file. When we open the pages offline, we want the $http.get calls to access this file and use it as a cache.
It sounds like it should be possible, but I'm new to angular, so I'm not sure how to configure that.