Skip to content

Commit

Permalink
Batch upload of Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Jan 14, 2014
1 parent fc322f0 commit cfac703
Show file tree
Hide file tree
Showing 107 changed files with 30,289 additions and 229,622 deletions.
48 changes: 40 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,23 +1,55 @@
JS_FILES = \
src/begin.js \
src/general.js \
src/public.js \
src/viz.js \
\
src/apps/bubbles.js \
src/apps/chart.js \
src/apps/geo_map.js \
src/apps/line.js \
src/apps/network.js \
src/apps/rings.js \
src/apps/stacked.js \
src/apps/tree_map.js \
src/apps/geo_map.js \
src/apps/pie_scatter.js \
src/apps/bubbles.js \
src/apps/rings.js \
src/ui/tooltip.js \
src/utils/data.js \
\
src/data/color.js \
src/data/filter.js \
src/data/format.js \
src/data/nest.js \
\
src/shapes/area.js \
src/shapes/color.js \
src/shapes/coordinates.js \
src/shapes/donut.js \
src/shapes/draw.js \
src/shapes/fill.js \
src/shapes/labels.js \
src/shapes/line.js \
src/shapes/links.js \
src/shapes/rect.js \
src/shapes/style.js \
\
src/styles/default.js \
\
src/tooltip/app.js \
src/tooltip/arrow.js \
src/tooltip/create.js \
src/tooltip/data.js \
src/tooltip/move.js \
src/tooltip/remove.js \
\
src/utils/color.js \
src/utils/error.js \
src/utils/nesting.js \
src/utils/titles.js \
src/utils/tooltip.js \
src/utils/utils.js \
src/utils/variables.js \
src/utils/wordwrap.js \
\
src/zoom/bounds.js \
src/zoom/controls.js \
src/zoom/reset.js \
\
src/end.js \

JS_COMPILER = uglifyjs
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ An extension to the D3 library that allows fast and easy creation of popular vis

* [Documentation](https://github.com/alexandersimoes/d3plus/wiki)
* [Google Group](https://groups.google.com/forum/#!forum/d3plus)
* [MIT Workshop (November 19th, 2013)](http://d3plus.org/workshops/11_19_2013/intro/)
14 changes: 1 addition & 13 deletions d3plus.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,11 @@ svg#scale {
********************/

div.d3plus_tooltip {
color: #333;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: lighter;
position: absolute;
}

div.d3plus_tooltip_container {
background-color: #fff;
padding: 6px;
}

Expand Down Expand Up @@ -158,7 +154,6 @@ div.d3plus_tooltip_close:hover {
}

div.d3plus_tooltip_arrow {
background-color: #fff;
bottom: -5px;
height: 10px;
left: 50%;
Expand All @@ -183,8 +178,6 @@ div.d3plus_tooltip_data_container {
}

div.d3plus_tooltip_data_title {
color: #333;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: bold;
padding: 6px 3px 0px 3px;
Expand All @@ -198,8 +191,6 @@ div.d3plus_tooltip_data_seperator {
}

div.d3plus_tooltip_data_block {
color: #333;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
padding: 3px 6px;
position: relative;
Expand Down Expand Up @@ -242,23 +233,20 @@ div.d3plus_tooltip_data_desc {
overflow: hidden;
-webkit-transition: height 0.5s;
transition: height 0.5s;
width: 90%;
width: 85%;
}

div.d3plus_tooltip_footer {
color: #333;
font-size: 10px;
position: relative;
text-align: center;
}

div.d3plus_tooltip_footer a {
color: #333;
text-decoration: none;
}

div.d3plus_tooltip_footer a:hover {
color: #000;
text-decoration: underline;
}

Expand Down
Loading

0 comments on commit cfac703

Please sign in to comment.