Blame view

js/contact.js 1.6 KB
059805e5   Geoffrey PREUD'HOMME   Suppression de la...
1
  $(document).ready(function() {
da998a7d   Geoffrey PREUD'HOMME   Nettoyage JS
2
3
4
5
      // enhance tel-links (from http://stackoverflow.com/a/18921965/2766106)
      $("a[href^='tel:']").each(function() {
          var target = "call-" + this.href.replace(/[^a-z0-9]*/gi, "");
          var link = this;
059805e5   Geoffrey PREUD'HOMME   Suppression de la...
6
  
da998a7d   Geoffrey PREUD'HOMME   Nettoyage JS
7
8
9
          // load in iframe to supress potential errors when protocol is not available
          $("body").append("<iframe name=\"" + target + "\" style=\"display: none\"></iframe>");
          link.target = target;
059805e5   Geoffrey PREUD'HOMME   Suppression de la...
10
  
da998a7d   Geoffrey PREUD'HOMME   Nettoyage JS
11
12
13
14
15
          // replace tel with callto on desktop browsers for skype fallback
          if (!navigator.userAgent.match(/(mobile)/gi)) {
              link.href = link.href.replace(/^tel:/, "callto:");
          }
      });
059805e5   Geoffrey PREUD'HOMME   Suppression de la...
16
  
da998a7d   Geoffrey PREUD'HOMME   Nettoyage JS
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
      // Carte
      var mapCanvas = document.getElementById('map-canvas');
      mapCanvas.innerHTML = '';
      var polytechPos = new google.maps.LatLng(50.6074998, 3.1373338);
      var mapOptions = {
          center: polytechPos,
          zoom: 16,
          mapTypeId: google.maps.MapTypeId.ROADMAP
      };
      var map = new google.maps.Map(mapCanvas, mapOptions);
      var marker = new google.maps.Marker({
          place: {
              location: polytechPos,
              query: "Polytech Lille"
          },
          attribution: {
              source: "Coupe de Robotique des Écoles Primaires",
              webUrl: window.location.host
          },
          map: map,
          title: "Polytech Lille"
      });
      var infowindow = new google.maps.InfoWindow({
          content: "<strong>Polytech Lille</strong><br/>Lieux des évènements de la Coupe de Robotique des Écoles Primaires"
      });
      marker.addListener('click', function() {
          infowindow.open(map, this);
      });
059805e5   Geoffrey PREUD'HOMME   Suppression de la...
45
  });