aboutsummaryrefslogtreecommitdiffstats
path: root/src/filters.js
diff options
context:
space:
mode:
authorMisko Hevery2010-07-13 11:20:11 -0700
committerMisko Hevery2010-07-13 11:20:11 -0700
commit87cfc27be331685043ea2a4414eba4fd8fbb4a2c (patch)
treee0c2e5c5919a3177816a30a602d8fc3971df0d4d /src/filters.js
parent228b54aa2ea9c5faf9280f39317fdf07b2d49580 (diff)
downloadangular.js-87cfc27be331685043ea2a4414eba4fd8fbb4a2c.tar.bz2
changed remaining ng- to ng:
Diffstat (limited to 'src/filters.js')
-rw-r--r--src/filters.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters.js b/src/filters.js
index a911b935..24464477 100644
--- a/src/filters.js
+++ b/src/filters.js
@@ -2,7 +2,7 @@ var angularFilterGoogleChartApi;
foreach({
'currency': function(amount){
- this.$element.toggleClass('ng-format-negative', amount < 0);
+ this.$element.toggleClass('ng:format-negative', amount < 0);
return '$' + angularFilter['number'].apply(this, [amount, 2]);
},