Skip to content

Commit

Permalink
€ & habs.
Browse files Browse the repository at this point in the history
  • Loading branch information
salicio committed Apr 18, 2010
1 parent c1cfdfc commit ecac1ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/municipios/evolution.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
var r = Raphael("holder_evolution_income");

var fin = function () {
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0")).insertBefore(this);
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0")+" €").insertBefore(this);
};
var fout = function () {
this.flag.animate({opacity: 0}, 300, function () {this.remove();});
Expand All @@ -39,7 +39,7 @@
var r = Raphael("holder_evolution_expense");

var fin = function () {
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0")).insertBefore(this);
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0")+" €").insertBefore(this);
};
var fout = function () {
this.flag.animate({opacity: 0}, 300, function () {this.remove();});
Expand All @@ -60,7 +60,7 @@
var r = Raphael("holder_evolution_population");

var fin = function () {
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0")).insertBefore(this);
this.flag = r.g.popup(this.bar.x, this.bar.y, format_num(this.bar.value || "0") + " habs.").insertBefore(this);
};
var fout = function () {
this.flag.animate({opacity: 0}, 300, function () {this.remove();});
Expand Down

0 comments on commit ecac1ec

Please sign in to comment.