home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Bureautique / calibre / calibre-1.35.0.msi / file_628 < prev    next >
Text File  |  2013-05-28  |  4KB  |  93 lines

  1. /*************************************************************
  2.  *
  3.  *  MathJax/extensions/v1.0-warning.js
  4.  *
  5.  *  This extension file is loaded when no jax are configured
  6.  *  as a backward-compatible measure to help people convert to the
  7.  *  new configuration process.
  8.  *
  9.  *  ---------------------------------------------------------------------
  10.  *  
  11.  *  Copyright (c) 2011-2012 Design Science, Inc.
  12.  * 
  13.  *  Licensed under the Apache License, Version 2.0 (the "License");
  14.  *  you may not use this file except in compliance with the License.
  15.  *  You may obtain a copy of the License at
  16.  * 
  17.  *      http://www.apache.org/licenses/LICENSE-2.0
  18.  * 
  19.  *  Unless required by applicable law or agreed to in writing, software
  20.  *  distributed under the License is distributed on an "AS IS" BASIS,
  21.  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  22.  *  See the License for the specific language governing permissions and
  23.  *  limitations under the License.
  24.  */
  25.  
  26. (function (HUB,HTML) {
  27.   var VERSION = "2.0";
  28.   
  29.   var CONFIG = {
  30.     style: {
  31.       position:"fixed", bottom:"4em", left:"3em", width:"40em",
  32.       border: "3px solid #880000", "background-color": "#E0E0E0", color: "black",
  33.       padding: "1em", "font-size":"small", "white-space":"normal",
  34.       
  35.       "border-radius": ".75em",                     // Opera 10.5 and IE9
  36.       "-webkit-border-radius": ".75em",             // Safari and Chrome
  37.       "-moz-border-radius": ".75em",                // Firefox
  38.       "-khtml-border-radius": ".75em",              // Konqueror
  39.  
  40.       "box-shadow": "4px 4px 10px #AAAAAA",         // Opera 10.5 and IE9
  41.       "-webkit-box-shadow": "4px 4px 10px #AAAAAA", // Safari 3 and Chrome
  42.       "-moz-box-shadow": "4px 4px 10px #AAAAAA",    // Forefox 3.5
  43.       "-khtml-box-shadow": "4px 4px 10px #AAAAAA",  // Konqueror
  44.       filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color='gray', Positive='true')" // IE
  45.     }
  46.   };
  47.   if (HUB.Browser.isIE9 && document.documentMode >= 9) {delete CONFIG.style.filter}
  48.   
  49.   var DIV;
  50.  
  51.   HUB.Register.StartupHook("onLoad",function () {
  52.     var frame = document.body;
  53.     if (HUB.Browser.isMSIE) {
  54.       MathJax.Message.Init();  // make sure MathJax_MSIE_frame exists
  55.       frame = document.getElementById("MathJax_MSIE_frame") || frame; // in IE8 and 9 it may not anyway
  56.       CONFIG.style.position = "absolute";
  57.     } else {delete CONFIG.style.filter}
  58.     CONFIG.style.maxWidth = (document.body.clientWidth-75) + "px";
  59.     DIV = HTML.addElement(frame,"div",{id:"MathJax_ConfigWarning",style:CONFIG.style},[
  60.       [
  61.         "div",{
  62.           style: {
  63.             position:"absolute", overflow:"hidden", top:".1em", right:".1em",
  64.             border: "1px outset", width:"1em", height:"1em",
  65.             "text-align": "center", cursor: "pointer",
  66.             "background-color": "#EEEEEE", color:"#606060",
  67.  
  68.             "border-radius": ".5em",           // Opera 10.5
  69.             "-webkit-border-radius": ".5em",   // Safari and Chrome
  70.             "-moz-border-radius": ".5em",      // Firefox
  71.             "-khtml-border-radius": ".5em"     // Konqueror
  72.           },
  73.           onclick: function () {DIV.style.display = "none"}
  74.         },
  75.         [["span",{style:{position:"relative", bottom:".2em"}},["x"]]]
  76.       ],
  77.       "MathJax no longer loads a default configuration file; " +
  78.       "you must specify such files explicitly. " +
  79.       "This page seems to use the older default ",["code",{},["config/MathJax.js"]],
  80.       " file, and so needs to be updated.  This is explained further at",
  81.       ["p",{style:{"text-align":"center"}},[
  82.         ["a",
  83.           {href:"http://www.mathjax.org/help/configuration"},
  84.           ["http://www.mathjax.org/help/configuration"]
  85.         ]
  86.       ]]
  87.     ]);
  88.   });
  89.  
  90. })(MathJax.Hub,MathJax.HTML);
  91.  
  92. MathJax.Ajax.loadComplete("[MathJax]/extensions/v1.0-warning.js");
  93.