aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/views/around.js
Commit message (Collapse)AuthorAgeLines
* Remove next button from confirm location screenStruan Donald2013-08-20-4/+1
| | | | | | | Potentially confusing to user that there is a confirm location and a next button and as they do the same remove the most ambigously titled one. Fixes #105
* Shorter intro help textStruan Donald2013-08-19-1/+0
| | | | Fixes #100
* Correctly close location error message tagStruan Donald2013-08-15-1/+2
|
* Better name and even less duplicate code for first time help displayStruan Donald2013-08-14-10/+7
|
* Refactor first time help showing code to a methodStruan Donald2013-08-14-4/+7
| | | | For the reduction of duplicate code
* Display help the first time the app is runStruan Donald2013-08-12-0/+10
| | | | | | Also record when help has been viewed so we don't display it again. For #92.
* Remove hardcoded location search placeholder textStruan Donald2013-08-09-1/+1
|
* make sure the relocate button is hidden before map displayStruan Donald2013-08-07-0/+1
|
* only hide search errors if there is a mapStruan Donald2013-08-06-2/+4
| | | | | Otherwise when the inital search fails bluring the search box removes the errors which doesn't seem very helpful
* Only stop listening to search events once search completeStruan Donald2013-08-05-2/+4
| | | | | | Don't stop listening to all locator events as that stops the current location GPS function working. Fixes #80.
* fix .attr callStruan Donald2013-08-05-1/+1
|
* Merge remote-tracking branch 'origin/master'Struan Donald2013-08-05-1/+1
|\
| * Fixed text for no-location search boxJedidiah Broadbent2013-08-05-1/+1
| |
* | Display reposition report button after recentering mapStruan Donald2013-08-05-1/+21
|/ | | | | | | If recentering the map moves the crosshair position to somewhere different to the current report location then display the reposition button. Includes small margin of error for GPS noise etc. Fixes #75
* improve display of search errorsStruan Donald2013-08-01-2/+22
|
* Make sure drafts button is hidden initiallyStruan Donald2013-08-01-0/+1
| | | | | Avoids it appearing and disappearing if yo go back to the screen from the photo page
* Do not perform background map blurring unless iPhone 4s+Struan Donald2013-08-01-1/+3
| | | | | On iPhone 4 it slows things down too much and as there's no way to sensibly limit this on Android devices just don't do it on Android.
* server actually sends back titles_list not title_listStruan Donald2013-08-01-2/+2
|
* force bbox update if we cancel the current reportStruan Donald2013-07-30-0/+2
| | | | Fixes #71
* Hide popup and make sure crosshairs visible when click New ReportStruan Donald2013-07-30-0/+2
| | | | Fixes #67
* More reliably make sure crosshair is displayedStruan Donald2013-07-26-5/+2
| | | | | | | The touchstart event seem unreliable in combination with openlayers and also the ability of backbone to capture events from an element not managed by it is also suspect so use touchend which is more reliable and directly manage handling it. It's not as neat but it works reliably :/
* display keyboard automatically on locating failed screen. Fixes #65Struan Donald2013-07-25-0/+1
|
* redisplay the corsshairs if the user touches the map. Fixes #5Struan Donald2013-07-25-0/+5
|
* add and remove background-map class to map_box when map enters/leaves ↵Struan Donald2013-07-25-0/+2
| | | | background. Fixes #64
* 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
* hide locating screen before changing to offline screen as otherwise you get ↵Struan Donald2013-07-19-0/+1
| | | | a strange reduced suxe locating screen on transition
* close correct tagStruan Donald2013-07-16-1/+1
|
* If location check fails display an error. Fixes #47.Struan Donald2013-07-16-1/+5
|
* instead of using js to inject the correct cordova js file in toStruan Donald2013-07-12-0/+409
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