diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojo/cldr/monetary.js | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojo/cldr/monetary.js')
-rw-r--r-- | includes/js/dojo/cldr/monetary.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/includes/js/dojo/cldr/monetary.js b/includes/js/dojo/cldr/monetary.js deleted file mode 100644 index e373d00..0000000 --- a/includes/js/dojo/cldr/monetary.js +++ /dev/null @@ -1,27 +0,0 @@ -if(!dojo._hasResource["dojo.cldr.monetary"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojo.cldr.monetary"] = true; -dojo.provide("dojo.cldr.monetary"); - -dojo.cldr.monetary.getData = function(/*String*/code){ -// summary: A mapping of currency code to currency-specific formatting information. Returns a unique object with properties: places, round. -// code: an [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code - -// from http://www.unicode.org/cldr/data/common/supplemental/supplementalData.xml:supplementalData/currencyData/fractions - - var placesData = { - ADP:0,BHD:3,BIF:0,BYR:0,CLF:0,CLP:0,DJF:0,ESP:0,GNF:0, - IQD:3,ITL:0,JOD:3,JPY:0,KMF:0,KRW:0,KWD:3,LUF:0,LYD:3, - MGA:0,MGF:0,OMR:3,PYG:0,RWF:0,TND:3,TRL:0,VUV:0,XAF:0, - XOF:0,XPF:0 - }; - - var roundingData = {CHF:5}; - - var places = placesData[code], round = roundingData[code]; - if(typeof places == "undefined"){ places = 2; } - if(typeof round == "undefined"){ round = 0; } - - return {places: places, round: round}; // Object -}; - -} |