Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
commitd9adcfe6169c6c10059a670f2ed984908eb4e105 (patch)
tree25cfca25851214c1b744a07e67e9c120adfd7513 /plugins/CoreHome/javascripts/color_manager.js
parent2788e1dad22533f3e0dbddbdd16c51251c4e130a (diff)
removed lots of trailing whitespace
Diffstat (limited to 'plugins/CoreHome/javascripts/color_manager.js')
-rw-r--r--plugins/CoreHome/javascripts/color_manager.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/CoreHome/javascripts/color_manager.js b/plugins/CoreHome/javascripts/color_manager.js
index e538de953d..cffff2c7be 100644
--- a/plugins/CoreHome/javascripts/color_manager.js
+++ b/plugins/CoreHome/javascripts/color_manager.js
@@ -29,28 +29,28 @@
* components that don't manage HTML (like jqPlot or sparklines). Such components
* can't use CSS colors directly since the colors are used to generate images
* or by <canvas> elements.
- *
+ *
* Colors obtained via ColorManager are defined in CSS like this:
- *
+ *
* .my-color-namespace[data-name=color-name] {
* color: #fff
* }
- *
+ *
* and can be accessed in JavaScript like this:
- *
+ *
* piwik.ColorManager.getColor("my-color-namespace", "color-name");
- *
+ *
* The singleton instance of this class can be accessed via piwik.ColorManager.
*/
var ColorManager = function () {
// empty
};
-
+
ColorManager.prototype = {
/**
* Returns the color for a namespace and name.
- *
+ *
* @param {String} namespace The string identifier that groups related colors
* together. For example, 'sparkline-colors'.
* @param {String} name The name of the color to retrieve. For example, 'lineColor'.
@@ -63,10 +63,10 @@
return this._normalizeColor(element.css('color'));
},
-
+
/**
* Returns the colors for a namespace and a list of names.
- *
+ *
* @param {String} namespace The string identifier that groups related colors
* together. For example, 'sparkline-colors'.
* @param {Array} names An array of color names to retrieve.
@@ -92,7 +92,7 @@
/**
* Returns a color that is N % between two other colors.
- *
+ *
* @param {String|Array} spectrumStart The start color. If percentFromStart is 0, this color will
* be returned. Can be either a hex color or RGB array.
* It will be converted to an RGB array if a hex color is supplied.
@@ -125,7 +125,7 @@
/**
* Utility function that converts a hex color (ie, #fff or #1a1a1a) to an array of
* RGB values.
- *
+ *
* @param {String} hexColor The color to convert.
* @return {Array} An array with three integers between 0 and 255.
*/
@@ -151,7 +151,7 @@
/**
* Utility function that converts an RGB array to a hex color.
- *
+ *
* @param {Array} rgbColor An array with three integers between 0 and 255.
* @return {String} The hex color, eg, #1a1a1a.
*/
@@ -190,7 +190,7 @@
}
return color;
},
-
+
/**
* Returns the manufactured <div> element used to obtain color data. When
* getting color data the class and data-name attribute of this element are
@@ -219,7 +219,7 @@
return this.transparentColor;
}
};
-
+
piwik.ColorManager = new ColorManager();
}(jQuery)); \ No newline at end of file