Skip to content

Commit

Permalink
rearranging options
Browse files Browse the repository at this point in the history
  • Loading branch information
toorshia committed Mar 23, 2013
1 parent 98732e9 commit 2488ca4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions justgage.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,15 @@
// value gauge is showing
value : (config.value) ? config.value : 0,

// symbol : string
// special symbol to show next to value
symbol : (config.symbol) ? config.symbol : "",

// valueFontColor : string
// color of label showing current value
valueFontColor : (config.valueFontColor) ? config.valueFontColor : "#010101",

// symbol : string
// special symbol to show next to value
symbol : (config.symbol) ? config.symbol : "",

// min : int
// min value
min : (config.min) ? parseFloat(config.min) : 0,
Expand Down Expand Up @@ -118,6 +119,10 @@
// text to show below value
label : (config.label) ? config.label : "",

// labelFontColor : string
// color of label showing label under value
labelFontColor : (config.labelFontColor) ? config.labelFontColor : "#b3b3b3",

// shadowOpacity : int
// 0 ~ 1
shadowOpacity : (config.shadowOpacity) ? config.shadowOpacity : 0.2,
Expand All @@ -138,11 +143,6 @@
"#ff0000"
],


// labelFontColor : string
// color of label showing label under value
labelFontColor : (config.labelFontColor) ? config.labelFontColor : "#b3b3b3",

// startAnimationTime : int
// length of initial animation
startAnimationTime : (config.startAnimationTime) ? config.startAnimationTime : 700,
Expand Down

0 comments on commit 2488ca4

Please sign in to comment.