aboutsummaryrefslogtreecommitdiff
path: root/web/app/store
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-07-03 20:03:23 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-07-03 20:03:23 +1200
commitebb43a1d910595462b384e3d1bd6375672da5b84 (patch)
treec0cb06b37f1c9d3fb2260e7bd259a9141a4118f9 /web/app/store
parentdbb2e88db2c5af22172ea3642b27899b8164b40a (diff)
downloadtrackermap-server-ebb43a1d910595462b384e3d1bd6375672da5b84.tar.gz
trackermap-server-ebb43a1d910595462b384e3d1bd6375672da5b84.tar.bz2
trackermap-server-ebb43a1d910595462b384e3d1bd6375672da5b84.zip
Implement geofence saving
Diffstat (limited to 'web/app/store')
-rw-r--r--web/app/store/GeofenceTypes.js (renamed from web/app/store/GeozoneTypes.js)6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/store/GeozoneTypes.js b/web/app/store/GeofenceTypes.js
index a41bf1501..cf378341b 100644
--- a/web/app/store/GeozoneTypes.js
+++ b/web/app/store/GeofenceTypes.js
@@ -14,15 +14,15 @@
* limitations under the License.
*/
-Ext.define('Traccar.store.GeozoneTypes', {
+Ext.define('Traccar.store.GeofenceTypes', {
extend: 'Ext.data.Store',
fields: ['key', 'name'],
data: [{
key: 'Polygon',
name: Strings.mapShapePolygon
- }, {
+ }/*, {
key: 'Circle',
name: Strings.mapShapeCircle
- }]
+ }*/]
});