mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-07 03:26:44 +01:00
alert when new travel has empty required params
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
angular.module('app.offerCar', ['pascalprecht.translate', 'ui-leaflet'])
|
||||
|
||||
.controller('OfferCarCtrl', function($scope, $stateParams, $translate,
|
||||
$http, $filter) {
|
||||
$http, $filter, $ionicLoading) {
|
||||
|
||||
$scope.newtravel={};
|
||||
$scope.newtravel.from={
|
||||
@@ -38,6 +38,8 @@ angular.module('app.offerCar', ['pascalprecht.translate', 'ui-leaflet'])
|
||||
function(data) { // optional
|
||||
// failed
|
||||
console.log(data);
|
||||
$ionicLoading.show({ template: 'Complete all parameters first', noBackdrop: true, duration: 2000 });
|
||||
|
||||
});
|
||||
};
|
||||
$scope.getGeo = function(){
|
||||
|
||||
Reference in New Issue
Block a user