n2BootstrapLibs-azbTbs-26035.js
上传用户:zhouquan
上传日期:2021-05-12
资源大小:16497k
文件大小:7k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

  1. //! ################################################################
  2. //! This file contains both original and merged/adapted code .
  3. //! Except where indicated, all code is 
  4. //! Copyright (c) 2004-2006 Amazon.com, Inc., and its Affiliates.
  5. //! All Rights Reserved.
  6. //! Not to be reused without permission
  7. if (typeof gsN2ImageHost=='undefined') { gsN2ImageHost='http://g-images.amazon.com/images/G/01/'; }
  8. var gbN2LibMonMigrated = true;
  9. var N2Loaded = false;
  10. var n2LMStart = new Date();
  11. var gaN2JSLibPaths =  [];
  12. var gaN2JSLibIds =  [];
  13. var gaN2CSSLibs = [];
  14. var gaN2CSSLibPaths = [];
  15. var gaN2JSLibs =  [];
  16. var oTheDoc = document;
  17. var oTheBody = oTheDoc.body;
  18. var oTheHead = document.getElementsByTagName('head').item(0);
  19. var n2sRTW1='onload';
  20. var n2sRTWTBS='simplepopoverloaded';
  21. function N2Initializer () {
  22. this.aHandlers = new Array();
  23. this.aEventsRun = new Array();
  24. this.bCoreLoaded = false;
  25. }
  26. new N2Initializer ();
  27. N2Initializer.prototype.runThisWhen  = function (sWhen, fFn, sComment) {
  28. if ( (typeof fFn != 'function') || fFn == null) return false;
  29. sWhen = sWhen.toLowerCase();
  30. if ( (sWhen =='inbody' && document.body) || this.aEventsRun[sWhen] ){
  31. fFn();
  32. } else {
  33. this.aHandlers[this.aHandlers.length] = { sWhen: sWhen, fFn: fFn, sComment: sComment };
  34. }
  35. return true
  36. }
  37. N2Initializer.prototype.initializeThis = N2Initializer.prototype.runThisWhen
  38. N2Initializer.prototype.loadThisWhen  = function (sWhen, sURL, sID, sComment) {
  39. sWhen = sWhen.toLowerCase();
  40. goN2LibMon.monitorLoad (sID);
  41. if ( sWhen =='now' ) {
  42. n2LoadScript(sURL, true, sID);
  43. } else {
  44. this.aHandlers[this.aHandlers.length] = { sWhen: sWhen, sURL: sURL, sID: sID, sComment: sComment };
  45. }
  46. return true
  47. }
  48. N2Initializer.prototype.run = function (sWhen) {
  49. sWhen = (typeof sWhen == 'undefined') ? null : sWhen;
  50. sWhen = sWhen.toLowerCase();
  51. this.aEventsRun[sWhen] = true;
  52. if (sWhen == 'coreloaded') { this.bCoreLoaded=true; }
  53. if (window.goN2Debug) goN2Debug.info("N2Initializer called with " + (sWhen ? "'"+sWhen+"'" : "null"));
  54. var aH = this.aHandlers;
  55. var len = aH.length;
  56. for (var i=0;i<len;i++) {
  57. var oTmp = aH[i];
  58. if ((oTmp.bCalled != true) &&
  59. (oTmp.fFn || oTmp.sURL) &&
  60. ( (sWhen == null) || (oTmp.sWhen && (oTmp.sWhen == sWhen)))
  61. ) {
  62. if ((oTmp.sWhen == 'coreloaded') && !this.bCoreLoaded) continue;
  63. if (window.goN2Debug) ;   
  64. if (oTmp.fFn) {
  65. oTmp.fFn();
  66. } else if (oTmp.sURL) {
  67. n2LoadScript(oTmp.sURL, true, oTmp.sID);
  68. oTmp.bCalled = true;
  69. }
  70. }
  71. }
  72. goN2Initializer = new N2Initializer();
  73. function  n2RunThisWhen (sWhen, fFn, sComment) {
  74. goN2Initializer.runThisWhen(sWhen, fFn, sComment);
  75. }
  76. function n2LoadThisWhen  (sWhen, sURL, sID, sComment) {
  77. goN2Initializer.loadThisWhen(sWhen, sURL, sID, sComment);
  78. }
  79. function n2RunIfLoaded (sLibID, fFn, sComment) {
  80. n2RunThisWhen(sLibID+'loaded', fFn, 'sequenced init of '+ sComment);
  81. }
  82. function n2LoadScript (sURL, bLocalCacheOK, sLibID) {
  83. if (sLibID) { goN2LibMon.requestLoad (sLibID); }
  84. var e = oTheDoc.createElement("script");
  85. e.type="text/javascript";
  86. if (bLocalCacheOK) {
  87. e.src = sURL;
  88. } else {
  89. e.src = sURL + (sURL.indexOf('?') == -1 ? '?' : '&') + 'lt='+ new Date().getTime();
  90. }
  91. oTheHead.appendChild(e);
  92. }
  93. function N2LibraryMonitor() {
  94. this.aLibs = {};
  95. this.bJSLoaded=false;
  96. this.bCSSLoaded=false;
  97. this.sNotLoaded ='A desirable part of the page did not load. Please refresh the page to try again. n';
  98. this.nTimer=null;
  99. this.nTimeoutMs = 10000;
  100. }
  101. new N2LibraryMonitor();
  102. N2LibraryMonitorProto = N2LibraryMonitor.prototype;
  103. N2LibraryMonitor.prototype.monitorLoad = function (sLibID) {
  104. this.aLibs[sLibID] = { sID: sLibID, nDuration: -1 };
  105. }
  106. N2LibraryMonitor.prototype.requestLoad = function (sLibID, sFeatureID) {
  107. var oTmp = this.aLibs[sLibID];
  108. if (oTmp) { oTmp.nDuration= -2; }
  109. this.resetTimer();
  110. }
  111. N2LibraryMonitor.prototype.beginLoad = function (sLibID, sFeatureID) {
  112. var oTmp = this.aLibs[sLibID];
  113. if (oTmp) { 
  114. oTmp.sFeature = sFeatureID;
  115. oTmp.nBegin = new Date().getTime();
  116. oTmp.nDuration= -3;
  117. }
  118. };
  119. N2LibraryMonitor.prototype.endLoad = function (sLibID, nStatus) {
  120. var oTmp = this.aLibs[sLibID];
  121. if (oTmp) { oTmp.nDuration = new Date().getTime() - oTmp.nBegin; oTmp.bLoaded=true;}
  122. var bALL;
  123. if (bALL=this.allLibsLoaded()) {
  124. this.clearTimer();
  125. } else {
  126. this.resetTimer();
  127. }
  128. goN2Initializer.run(sLibID+'loaded');
  129. if (bALL) {
  130. goN2Initializer.run('lastlibraryloaded');
  131. }
  132. }
  133. N2LibraryMonitorProto.clearTimer=function() {
  134. if (this.nTimer) {
  135. clearTimeout(this.nTimer);
  136. this.nTimer = null;
  137. }
  138. }
  139. N2LibraryMonitorProto.resetTimer=function() {
  140. if (this.nTimer) { 
  141. clearTimeout(this.nTimer);
  142. }
  143. this.nTimer = setTimeout(n2LibraryLoadTimeout, this.nTimeoutMs);
  144. }
  145. function n2LibraryLoadTimeout() {
  146. goN2Initializer.run('libraryloadfailed');
  147. }
  148. N2LibraryMonitor.prototype.allLibsLoaded = function () {
  149. var bAllLoaded=true;
  150. for (var key in this.aLibs) {
  151. if (this.aLibs[key] && this.aLibs[key].nDuration <0) { bAllLoaded=false; }
  152. }
  153. this.bJSLoaded = bAllLoaded;
  154. return bAllLoaded;
  155. }
  156. N2LibraryMonitor.prototype.confirmJSLoaded = function() { return this.bJSLoaded; }
  157. N2LibraryMonitor.prototype.confirmCSSLoaded = function() { this.bCSSLoaded=true; }
  158. N2LibraryMonitor.prototype.isJSLoaded = function() { return this.bJSLoaded; }
  159. N2LibraryMonitor.prototype.isCSSLoaded = function() { return this.bCSSLoaded; }
  160. N2LibraryMonitor.prototype.status = function() { 
  161. if (this.bJSLoaded) return "OK!";
  162. else return this.sNotLoaded;
  163. }
  164. N2LibraryMonitor.prototype.stats = function() { return "N/A"; };
  165. goN2LibMon = new N2LibraryMonitor();
  166. var n2LLStop = new Date();
  167. var n2LMStop = new Date();
  168. function N2ConfigBase() { 
  169. this.getValue = function(id,d) {
  170. if(typeof this[id] != 'undefined') { return this.id; }
  171. else { return d; } } }
  172. var goN2ConfigBase = new N2ConfigBase();
  173. gaN2CSSLibPaths.push(
  174. '/css/top/n2CoreCSS-n2v1-11682.css');
  175. gaN2JSLibPaths.push(
  176. '/js/n2CoreLibs-utilities-46178.js',
  177. '/js/n2CoreLibs-events-7142.js',
  178. '/js/n2CoreLibs-simplePopover-15661.js');
  179. gaN2JSLibIds.push(
  180. 'utilities',
  181. 'events',
  182. 'simplePopover');
  183. (function()
  184. {
  185. if (gsN2ImageHost != 'http://g-images.amazon.com/images/G/01/')
  186. {
  187. var i;
  188. for (i in gaN2CSSLibPaths)
  189. gaN2CSSLibPaths[i] = gaN2CSSLibPaths[i].replace(/^http://g-images.amazon.com/images/G/01//, gsN2ImageHost);
  190. for (i in gaN2JSLibPaths)
  191. gaN2JSLibPaths[i] = gaN2JSLibPaths[i].replace(/^http://g-images.amazon.com/images/G/01//, gsN2ImageHost);
  192. }
  193. }());
  194. (function()
  195. {
  196. var i;
  197. var sTags = "";
  198. var bIsSafari = navigator.userAgent.match(/Safari/);
  199. for (i in gaN2CSSLibPaths)
  200. {
  201. sTags += '<link href="'+gaN2CSSLibPaths[i]+'" type="text/css" rel="stylesheet">n';
  202. }
  203. for (i in gaN2JSLibPaths)
  204. {
  205. goN2LibMon.monitorLoad(gaN2JSLibIds[i]);
  206. var sScript = '<script src="'+gaN2JSLibPaths[i]+'" type="text/javascript"></script>n';
  207. if (bIsSafari) document.write(sScript);
  208. else sTags += sScript;
  209. }
  210. document.write(sTags);
  211. }());
  212. var goCust = new Object();
  213. goCust.isLoggedIn = function() { return false; }
  214. var goN2Explorer;
  215. var gaTD;
  216. var goN2AC;
  217. n2RunThisWhen (n2sRTWTBS, 
  218. function() {
  219. oAllCatPopover = new N2SimplePopover();
  220. goN2Events.registerFeature('two-tabs', 'oAllCatPopover', 'n2MouseOverHotspot', 'n2MouseOutHotspot'); 
  221. goN2Events.setFeatureDelays('two-tabs',200, 400, 200);
  222. oAllCatPopover.initialize('AllCatPopoverDiv', 'oAllCatPopover',null,null,'below','c'); 
  223. }, 
  224. 'All Categories popover');
  225. n2RunThisWhen(n2sRTW1, 
  226. function() {
  227. if (!window.gaTD) gaTD = new Array();
  228. N2Loaded = goN2LibMon.isJSLoaded(); 
  229. }, "Last Init");