Déplacement préalable à l'eggification.
[ckeditor.git] / Products / ckeditor / skins / ckeditor / plugins / plinn_image / dialog / plinn_image_tabs.html.pt
diff --git a/Products/ckeditor/skins/ckeditor/plugins/plinn_image/dialog/plinn_image_tabs.html.pt b/Products/ckeditor/skins/ckeditor/plugins/plinn_image/dialog/plinn_image_tabs.html.pt
new file mode 100644 (file)
index 0000000..8afa5f0
--- /dev/null
@@ -0,0 +1,93 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+       <head>
+               <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+               <title>Image tabs options</title>
+               <style>
+                 <!--
+                 body {
+                   margin:0;
+                   padding:0;
+                 }
+      ul {
+        border-bottom:2px solid #DDDDDD;
+        border-collapse:collapse;
+        margin:0pt;
+        padding-left:1em;
+        white-space:nowrap;
+        position:absolute;
+        bottom:0;
+        width:100%;
+      }
+      li {
+        display:inline;
+        font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,sans-serif;
+        font-size:90%;
+      }
+      a {
+        text-decoration:none;
+      }
+      a, a:visited {
+        background-color:#fff;
+        border-left:1px dashed #ddd;
+        border-right:1px dashed #ddd;
+        border-top:1px dashed #ddd;
+        color:#369;
+        margin-right:0.5em;
+        padding:0pt 1em;
+      }
+      a:hover, a:active {
+        background-color:#ddd;
+        color:#369;
+      }
+      .selected a, .selected a:visited, .selected a:hover {
+        background-color:#FFFFFF;
+        border-color:#ddd rgb(221, 221, 221) rgb(255, 255, 255);
+        border-style:solid;
+        border-width:2px 2px 3px;
+        color:#336699;
+      }
+      -->
+               </style>
+
+               <script type="text/javascript" language="javascript" charset="utf-8" src="epoz_script_detect.js"></script>
+               <script type="text/javascript" language="javascript" charset="utf-8" src="javascript_events_api.js"></script>
+               <script type="text/javascript">
+               // <!--
+                 var tabs = [];
+                 function initTabs() {
+                   var pluginPath = window.parent.pluginPath;
+
+                   tabs = document.getElementsByTagName('a');
+                   tabs[0].href = pluginPath + 'dialog/embedded_images.html';
+                   tabs[1].href = window.parent.editor.config.filebrowserImageBrowseUrl;
+                   addListener(document, 'click', updateTabs)
+                 };
+                 addListener(window, 'load', initTabs);
+
+                 function updateTabs(evt) {
+                   var t = getTargetedObject(evt);
+                   if (t.tagName == 'A') {
+                   for (var i=0 ; i<tabs.length ; i++) {
+                     if (t == tabs[i])
+                       tabs[i].parentNode.className = 'selected';
+                     else
+                       tabs[i].parentNode.className = '';
+                   }
+                   t.blur();
+                   }
+                 }
+               // -->
+               </script>
+       </head>
+
+       <body>
+    <ul>
+      <li class="selected"><a href="." target="main">Images du document</a></li>
+      <li><a href="." target="main">Images du site</a></li>
+    </ul>
+  </body>
+</html>
+