Browse Source

map touch bug fixed, and share event improved

master
arnaucode 7 years ago
parent
commit
2d74104047
4 changed files with 12 additions and 11 deletions
  1. +1
    -1
      www/js/app.js
  2. +1
    -1
      www/js/events.js
  3. +6
    -5
      www/js/savedEvents.js
  4. +4
    -4
      www/templates/mapEvents.html

+ 1
- 1
www/js/app.js

@ -1,5 +1,5 @@
var urlapi = "http://localhost:3000/api/";
//var urlapi = "http://192.168.1.34:3000/api/";
//var urlapi = "http://192.168.1.33:3000/api/";

+ 1
- 1
www/js/events.js

@ -1,7 +1,7 @@
angular.module('app.events', ['pascalprecht.translate'])
.controller('EventsCtrl', function($scope, $http, $ionicModal,
$timeout, $ionicLoading, $filter) {
$timeout, $ionicLoading, $filter, $cordovaSocialSharing) {
$scope.events=[];

+ 6
- 5
www/js/savedEvents.js

@ -1,14 +1,15 @@
angular.module('app.savedEvents', ['pascalprecht.translate'])
.controller('SavedEventsCtrl', function($scope, $http, $ionicModal, $timeout, $ionicLoading, $filter) {
.controller('SavedEventsCtrl', function($scope, $http, $ionicModal,
$timeout, $ionicLoading, $filter, $cordovaSocialSharing) {
$scope.share = function(event){
var message = event.description;
var subject = event.title;
var file= ['',''];
var message = "[" + event.title + "]" + event.description;
/*var subject = event.title;
var file= ['',''];*/
var link = "http://duckduckgo.com";
$cordovaSocialSharing
.share(message, subject, file, link) // Share via native share sheet
.share(message, link) // Share via native share sheet
.then(function(result) {
// Success!
}, function(err) {

+ 4
- 4
www/templates/mapEvents.html

@ -1,7 +1,7 @@
<ion-view view-title="Map of Events">
<ion-content class="c_blueGrey100">
<leaflet
width="100%" height="100%" markers="markers"
center="center" tiles="tiles" id="map-simple-map"></leaflet>
<ion-content class="c_blueGrey100" data-tap-disabled="true">
<leaflet
width="100%" height="100%" markers="markers"
center="center" tiles="tiles" id="map-simple-map"></leaflet>
</ion-content>
</ion-view>

Loading…
Cancel
Save