util.js 450 B

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