[Pkg-javascript-commits] [d3-tip.js] 55/277: we no longer need padding, cornerRadius and stemSize
bhuvan krishna
bhuvan-guest at moszumanska.debian.org
Thu Dec 8 06:57:16 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 cfbafcadf91d9cd838bf1cd68eff0b8f52e3bbdc
Author: Justin Palmer <justin at github.com>
Date: Fri Apr 5 10:38:11 2013 -0700
we no longer need padding, cornerRadius and stemSize
---
src/d3.tip.js | 33 ---------------------------------
1 file changed, 33 deletions(-)
diff --git a/src/d3.tip.js b/src/d3.tip.js
index 896372a..23cf318 100644
--- a/src/d3.tip.js
+++ b/src/d3.tip.js
@@ -54,39 +54,6 @@ d3.svg.tip = function() {
return tip;
};
- // Public: Sets or gets the padding on all sides for the tooltip
- //
- // v - Padding value as a number
- //
- // Returns padding or tip
- tip.padding = function(v) {
- if (!arguments.length) return padding;
- padding = v;
- return tip;
- };
-
- // Public: Sets or gets the corner radius of the tooltip on all sides
- //
- // v - Radius as a Number
- //
- // Returns cornerRadius or tip
- tip.cornerRadius = function(v) {
- if (!arguments.length) return cornerRadius;
- cornerRadius = v;
- return tip;
- };
-
- // Public: Sets or gets the size of the stem
- //
- // v - size of the stem
- //
- // Returns stemSize or tip
- tip.stemSize = function(v) {
- if (!arguments.length) return stemSize;
- stemSize = v;
- return tip;
- };
-
// Public: Sets or gets the offset of the tip
//
// v - Array of [x, y] offset
--
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