diff options
Diffstat (limited to 'public/bower_components/jvectormap/tests/build.html')
-rw-r--r-- | public/bower_components/jvectormap/tests/build.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/public/bower_components/jvectormap/tests/build.html b/public/bower_components/jvectormap/tests/build.html new file mode 100644 index 0000000..721c357 --- /dev/null +++ b/public/bower_components/jvectormap/tests/build.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> + <title>jVectorMap demo</title> + <link rel="stylesheet" media="all" href="../jquery-jvectormap.css"/> + <script src="assets/jquery-1.8.2.js"></script> + <script src="../jquery.jvectormap.min.js"></script> + <script src="assets/jquery-jvectormap-world-mill-en.js"></script> + <script> + $(function(){ + $('#map').vectorMap({ + map: 'world_mill_en' + }); + }) + </script> +</head> +<body> + <div id="map" style="width: 600px; height: 400px"></div> +</body> +</html> |