[Pkg-javascript-commits] [d3-tip.js] 189/277: use lib/index.js convention

bhuvan krishna bhuvan-guest at moszumanska.debian.org
Thu Dec 8 06:57:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

bhuvan-guest pushed a commit to branch master
in repository d3-tip.js.

commit 90c3a4a3c0aa0b093813c5f49c24af5662390165
Author: Justin Palmer <justin at github.com>
Date:   Tue Oct 1 09:35:10 2013 -0700

    use lib/index.js convention
---
 README.md                     | 1 -
 bower.json                    | 2 +-
 examples/bars.html            | 4 ++--
 examples/bulk-attr-style.html | 4 ++--
 examples/circles.html         | 4 ++--
 examples/css-transitions.html | 4 ++--
 examples/performance.html     | 4 ++--
 src/d3.tip.js => index.js     | 0
 8 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index 374b9b5..519c857 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,6 @@
 See the [API Documentation](docs/index.md)
 
 ### Download Latest Version
-* [Production Version](https://raw.github.com/Caged/d3-tip/v0.5.2/d3.tip.min.js) : **3kb** / **~1kb gzipped**
 * [Development Version](https://raw.github.com/Caged/d3-tip/v0.5.2/src/d3.tip.js) : **6kb** / **~2kb gzipped**
 
 ### Install with Bower
diff --git a/bower.json b/bower.json
index 21908a5..f0e74c6 100644
--- a/bower.json
+++ b/bower.json
@@ -1,7 +1,7 @@
 {
   "name": "d3-tip",
   "version": "0.6.0",
-  "main": "src/d3.tip.js",
+  "main": "index.js",
   "ignore": [
     "**/.*",
     "node_modules",
diff --git a/examples/bars.html b/examples/bars.html
index 3466200..9974e01 100644
--- a/examples/bars.html
+++ b/examples/bars.html
@@ -5,7 +5,7 @@
   <meta charset="utf-8" />
   <title>Bar Chart</title>
   <script type="text/javascript" src="../bower_components/d3/d3.js"></script>
-  <script type="text/javascript" src="../src/d3.tip.js"></script>
+  <script type="text/javascript" src="../index.js"></script>
   <script type="text/javascript">
     data = [{"total":225,"days":[12,51,60,26,38,31,7]},{"total":279,"days":[42,33,34,72,61,12,25]},{"total":212,"days":[12,59,24,70,36,5,6]},{"total":335,"days":[17,43,38,58,67,72,40]},{"total":329,"days":[40,53,62,48,38,36,52]},{"total":234,"days":[15,25,41,66,35,37,15]},{"total":175,"days":[2,40,23,40,23,34,13]},{"total":308,"days":[20,22,63,55,51,66,31]},{"total":401,"days":[20,64,42,62,88,79,46]},{"total":214,"days":[24,27,25,48,38,28,24]},{"total":332,"days":[26,43,20,109,74,29,31]} [...]
   </script>
@@ -127,4 +127,4 @@
       .on('mouseout', tip.hide)
   </script>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/examples/bulk-attr-style.html b/examples/bulk-attr-style.html
index e9bf8b5..4064547 100644
--- a/examples/bulk-attr-style.html
+++ b/examples/bulk-attr-style.html
@@ -5,7 +5,7 @@
   <meta charset="utf-8" />
   <title>Bar Chart</title>
   <script type="text/javascript" src="../bower_components/d3/d3.js"></script>
-  <script type="text/javascript" src="../src/d3.tip.js"></script>
+  <script type="text/javascript" src="../index.js"></script>
   <script type="text/javascript">
     data = [{"total":225,"days":[12,51,60,26,38,31,7]},{"total":279,"days":[42,33,34,72,61,12,25]},{"total":212,"days":[12,59,24,70,36,5,6]},{"total":335,"days":[17,43,38,58,67,72,40]},{"total":329,"days":[40,53,62,48,38,36,52]},{"total":234,"days":[15,25,41,66,35,37,15]},{"total":175,"days":[2,40,23,40,23,34,13]},{"total":308,"days":[20,22,63,55,51,66,31]},{"total":401,"days":[20,64,42,62,88,79,46]},{"total":214,"days":[24,27,25,48,38,28,24]},{"total":332,"days":[26,43,20,109,74,29,31]} [...]
   </script>
@@ -132,4 +132,4 @@
       .on('mouseout', tip.hide)
   </script>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/examples/circles.html b/examples/circles.html
index c290308..d4adb8e 100644
--- a/examples/circles.html
+++ b/examples/circles.html
@@ -5,7 +5,7 @@
   <meta charset="utf-8" />
   <title>Circles</title>
   <script type="text/javascript" src="../bower_components/d3/d3.js"></script>
-  <script type="text/javascript" src="../src/d3.tip.js"></script>
+  <script type="text/javascript" src="../index.js"></script>
   <style type="text/css">
   body {
     padding: 40px;
@@ -116,4 +116,4 @@
 
   </script>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/examples/css-transitions.html b/examples/css-transitions.html
index 0515950..1036f39 100644
--- a/examples/css-transitions.html
+++ b/examples/css-transitions.html
@@ -5,7 +5,7 @@
   <meta charset="utf-8" />
   <title>CSS Transitions</title>
   <script type="text/javascript" src="../bower_components/d3/d3.js"></script>
-  <script type="text/javascript" src="../src/d3.tip.js"></script>
+  <script type="text/javascript" src="../index.js"></script>
   <script type="text/javascript">
     data = [{"total":225,"days":[12,51,60,26,38,31,7]},{"total":279,"days":[42,33,34,72,61,12,25]},{"total":212,"days":[12,59,24,70,36,5,6]},{"total":335,"days":[17,43,38,58,67,72,40]},{"total":329,"days":[40,53,62,48,38,36,52]},{"total":234,"days":[15,25,41,66,35,37,15]},{"total":175,"days":[2,40,23,40,23,34,13]},{"total":308,"days":[20,22,63,55,51,66,31]},{"total":401,"days":[20,64,42,62,88,79,46]},{"total":214,"days":[24,27,25,48,38,28,24]},{"total":332,"days":[26,43,20,109,74,29,31]} [...]
   </script>
@@ -179,4 +179,4 @@
 
   </script>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/examples/performance.html b/examples/performance.html
index 3e1d572..f31a357 100644
--- a/examples/performance.html
+++ b/examples/performance.html
@@ -5,7 +5,7 @@
   <meta charset="utf-8" />
   <title>Bar Chart</title>
   <script type="text/javascript" src="../bower_components/d3/d3.js"></script>
-  <script type="text/javascript" src="../src/d3.tip.js"></script>
+  <script type="text/javascript" src="../index.js"></script>
   <style type="text/css">
   body {
     padding: 40px;
@@ -111,4 +111,4 @@
 
   </script>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/src/d3.tip.js b/index.js
similarity index 100%
rename from src/d3.tip.js
rename to index.js

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/d3-tip.js.git



More information about the Pkg-javascript-commits mailing list