aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/views/offline.js
Commit message (Collapse)AuthorAgeLines
* update Android to Cordova 3.6Struan Donald2015-08-28-160/+0
| | | | | | | | Required due to security issue Remove Android directory as no longer required, move src -> www to match standard layout, update .gitignore to avoid including the standard platform files, update README based on Steve's zurich one
* Remove hardcoded position result strings from offline pageStruan Donald2013-09-16-2/+2
|
* Correctly handle back button on start screensStruan Donald2013-08-23-0/+4
| | | | | | | | On the inital screens the android back button should quit the app, or if on the map screen and you've started a report it should cancel it. Add in a default back method to FMSView and an override method for the map, exising report and offline screens Fixes #117
* Only call content hide before displaying pageStruan Donald2013-08-20-2/+6
| | | | | | | Previously the content hiding code was also called when you left either of the text fields which meant that when you e.g. dimissed the keyboard the page content vanished. Fixes #103
* Fix glitchy drafts to offline transitionStruan Donald2013-08-07-0/+6
| | | | | | | Make sure offline page is scrolled to top before it's displayed and also hide drafts page to make avoid popup effects Fixes #85
* correct transition direction for offline -> draftsStruan Donald2013-08-07-2/+2
|
* move cancelling of offline locate click default up to the view the eventStruan Donald2013-07-25-1/+6
| | | | | is for rather because locator.locate usually doesn't get an event and it's silly to put a guard clause there
* stop phantom click throughs from canceling the locating screen and also from ↵Struan Donald2013-07-25-1/+2
| | | | it starting and immediately returning on the offline screen
* change to use phonegap API alert call so we can use a title inStruan Donald2013-07-23-1/+1
| | | | | the alert box and then use own internal function to call this to ensure consistency
* try again goes to around rather than home from offline screenStruan Donald2013-07-19-1/+1
|
* do not display lat/long of offline report. For #55Struan Donald2013-07-18-1/+1
|
* instead of using js to inject the correct cordova js file in toStruan Donald2013-07-12-0/+140
index.html restructure things so that the common files are a level down and the platofrm specific ones are directly placed in the relevant project. This both makes for less fuss and also avoids the error with Android < v3 instantiating cordova twice. Note that the iOS common assets are included by a build script rather than a symlink as symlinking doesn't seem to agree with Xcode