123456789101112131415 |
- // Licensed Materials - Property of IBM
- // IBM Cognos Products: cclcore
- // (C) Copyright IBM Corp. 2011
- // US Government Users Restricted Rights – Use, duplication or disclosure restricted
- // by GSA ADP Schedule Contract with IBM Corp.
- dojo.provide("bidi.util");
- // The function checks if the input locale's default script direction is right-to-left
- // @sLocale: the locale
- function isLocaleRTL( sLocale )
- {
- var isRTL = false;
- return isRTL;
- }
|