[Pkg-javascript-commits] [leaflet] 157/301: Test pages for rtl support.
Jonas Smedegaard
js at moszumanska.debian.org
Mon Jan 27 22:22:48 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository leaflet.
commit b987f0c44bcad09fa5d35307fd527a988528a66a
Author: danzel <danzel at localhost.geek.nz>
Date: Wed Oct 30 10:22:19 2013 +1300
Test pages for rtl support.
---
debug/tests/rtl.html | 43 +++++++++++++++++++++++++++++++++++++++++++
debug/tests/rtl2.html | 28 ++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/debug/tests/rtl.html b/debug/tests/rtl.html
new file mode 100644
index 0000000..6a32ed7
--- /dev/null
+++ b/debug/tests/rtl.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Leaflet debug page</title>
+
+ <link rel="stylesheet" href="../../dist/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+ <link rel="stylesheet" href="../css/screen.css" />
+
+ <script type="text/javascript" src="../../build/deps.js"></script>
+ <script src="../leaflet-include.js"></script>
+ <style>
+ body {
+ direction: rtl;
+ }
+</style>
+</head>
+<body>
+
+ <p>Click the map to place a popup at the mouse location</p>
+ <div id="map"></div>
+
+ <script type="text/javascript">
+
+ var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/997/256/{z}/{x}/{y}.png', {
+ maxZoom: 18,
+ attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
+ key: 'd4fc77ea4a63471cab2423e66626cbb6'
+ });
+
+ var map = L.map('map')
+ .setView([50.5, 30.51], 15)
+ .addLayer(cloudmade);
+
+ map.on('click', function(e) {
+ L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map);
+ });
+ </script>
+</body>
+</html>
diff --git a/debug/tests/rtl2.html b/debug/tests/rtl2.html
new file mode 100644
index 0000000..28f8623
--- /dev/null
+++ b/debug/tests/rtl2.html
@@ -0,0 +1,28 @@
+<html dir="rtl">
+<head>
+
+ <link rel="stylesheet" href="../../dist/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+ <link rel="stylesheet" href="../css/mobile.css" />
+
+ <script type="text/javascript" src="../../build/deps.js"></script>
+ <script src="../leaflet-include.js"></script>
+ <style>
+ #map { height: 100%; }
+ </style>
+</head>
+<body>
+<div id="map"></div>
+<script>
+ var map = L.map('map').setView([51.505, -0.09], 13);
+ L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
+map.on('click', function(e) {
+ L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map);
+});
+
+</script>
+</body>
+</html>
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet.git
More information about the Pkg-javascript-commits
mailing list