Host.js 348 B

123456789101112131415161718
  1. Host = {
  2. //jPlayer Flash Path
  3. playerPath: "js/",
  4. ttsServer: "",
  5. // Domain
  6. domain: "www.hebei.gov.cn",
  7. mp3Path: ""
  8. };
  9. Host.getCurrent = function (w) {
  10. var h = {};
  11. h.window = w ? w : window;
  12. var url = h.window.document.location.href;
  13. //Host.mp3Path = Host.ttsServer + hex_md5(url) + "/";
  14. return Host;
  15. }