code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function(tinymce) { var each = tinymce.each; // Checks if the selection/caret is at the start of ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/editor_plugin_src.js
JavaScript
oos
39,403
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#table_dlg.merge_cells_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/merge_cells.htm
HTML
oos
1,508
tinyMCEPopup.requireLangPack(); function init() { tinyMCEPopup.resizeToInnerSize(); document.getElementById('backgroundimagebrowsercontainer').innerHTML = getBrowserHTML('backgroundimagebrowser','backgroundimage','image','table'); document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTM...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/js/row.js
JavaScript
oos
7,775
tinyMCEPopup.requireLangPack(); var MergeCellsDialog = { init : function() { var f = document.forms[0]; f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1); f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1); }, merge : function() { var func, f = document.forms[0]; tinyMCEPopup.rest...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/js/merge_cells.js
JavaScript
oos
566
tinyMCEPopup.requireLangPack(); var action, orgTableWidth, orgTableHeight, dom = tinyMCEPopup.editor.dom; function insertTable() { var formObj = document.forms[0]; var inst = tinyMCEPopup.editor, dom = inst.dom; var cols = 2, rows = 2, border = 0, cellpadding = -1, cellspacing = -1, align, width, height, cl...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/js/table.js
JavaScript
oos
15,458
tinyMCEPopup.requireLangPack(); var ed; function init() { ed = tinyMCEPopup.editor; tinyMCEPopup.resizeToInnerSize(); document.getElementById('backgroundimagebrowsercontainer').innerHTML = getBrowserHTML('backgroundimagebrowser','backgroundimage','image','table'); document.getElementById('bordercolor_pi...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/js/cell.js
JavaScript
oos
9,458
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#table_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="../../util...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/table.htm
HTML
oos
9,035
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#table_dlg.cell_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="../.....
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/cell.htm
HTML
oos
7,292
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#table_dlg.row_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="../../...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/row.htm
HTML
oos
6,263
/* CSS file for cell dialog in the table plugin */ .panel_wrapper div.current { height: 200px; } .advfield { width: 200px; } #action { margin-bottom: 3px; } #class { width: 150px; }
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/css/cell.css
CSS
oos
205
/* CSS file for table dialog in the table plugin */ .panel_wrapper div.current { height: 245px; } .advfield { width: 200px; } #class { width: 150px; }
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/css/table.css
CSS
oos
170
/* CSS file for row dialog in the table plugin */ .panel_wrapper div.current { height: 200px; } .advfield { width: 200px; } #action { margin-bottom: 3px; } #rowtype,#align,#valign,#class,#height { width: 150px; } #height { width: 50px; } .col2 { padding-left: 20px; }
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/table/css/row.css
CSS
oos
306
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.WordCount', { block : 0, id : null, ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/wordcount/editor_plugin_src.js
JavaScript
oos
3,331
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var rootAttributes = tinymce.explode('id,name,width,height,style,align,clas...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/media/editor_plugin_src.js
JavaScript
oos
26,419
(function() { var url; if (url = tinyMCEPopup.getParam("media_external_list_url")) document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>'); function get(id) { return document.getElementById(id); } function c...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/media/js/media.js
JavaScript
oos
16,473
/** * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose. */ function writeFlash(p) { writeEmbed( 'D27CDB6E-AE6D-11cf-96B8-444553540000', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', 'application/x-s...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/media/js/embed.js
JavaScript
oos
1,938
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#media_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="js/media.j...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/media/media.htm
HTML
oos
38,852
#id, #name, #hspace, #vspace, #class_name, #align { width: 100px } #hspace, #vspace { width: 50px } #flash_quality, #flash_align, #flash_scale, #flash_salign, #flash_wmode { width: 100px } #flash_base, #flash_flashvars, #html5_altsource1, #html5_altsource2, #html5_poster { width: 240px } #width, #height { width: 40...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/media/css/media.css
CSS
oos
1,357
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Print', { init : function(ed, url) { ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/print/editor_plugin_src.js
JavaScript
oos
881
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Directionality', { init : function(ed, u...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/directionality/editor_plugin_src.js
JavaScript
oos
2,189
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.StylePlugin', { init : function(ed, url)...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/style/editor_plugin_src.js
JavaScript
oos
1,927
tinyMCEPopup.requireLangPack(); var defaultFonts = "" + "Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" + "Times New Roman, Times, serif=Times New Roman, Times, serif;" + "Courier New, Courier, mono=Courier New, Courier, mono;" + "Times New Roman, Times, serif=Times New Roman, Times, serif;"...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/style/js/props.js
JavaScript
oos
32,355
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#style_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="../../utils/mct...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/style/props.htm
HTML
oos
37,649
#text_font {width:250px;} #text_size {width:70px;} .mceAddSelectValue {background:#DDD;} select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {width:70px;} #box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #position...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/style/css/props.css
CSS
oos
906
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM, Event = tinymce.dom.Event, each = tinymce.each, explode = tinym...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/tabfocus/editor_plugin_src.js
JavaScript
oos
2,935
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Save', { init : function(ed, url) { ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/save/editor_plugin_src.js
JavaScript
oos
2,529
/* Clearlooks 2 */ /* Reset */ .clearlooks2, .clearlooks2 div, .clearlooks2 span, .clearlooks2 a {vertical-align:baseline; text-align:left; position:absolute; border:0; padding:0; margin:0; background:transparent; font-family:Arial,Verdana; font-size:11px; color:#000; text-decoration:none; font-weight:normal; width:au...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css
CSS
oos
6,625
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM, Element = tinymce.dom.Element, Event = tinymce.dom.E...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/inlinepopups/editor_plugin_src.js
JavaScript
oos
19,609
<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Template for dialogs</title> <link rel="stylesheet" type="text/css" href="skins/clearlooks2/window.css" /> </head> <body> <div class="...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/inlinepopups/template.htm
HTML
oos
12,878
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.ExampleDependencyPlugin', { /** * Initializes th...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/example_dependency/editor_plugin_src.js
JavaScript
oos
1,835
/** * editor_plugin_src.js * * Copyright 2012, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.VisualBlocks', { init : function(ed, url...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/visualblocks/editor_plugin_src.js
JavaScript
oos
1,712
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <script language="javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="jscripts/embed.js"></script> <script type="text/javascript"> tinyMCEPopup.onInit.add(function(ed) { var dom = tinyMCEPopup.dom; // Load editor content_c...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/preview/example.html
HTML
oos
731
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Preview', { init : function(ed, url) { var t = th...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/preview/editor_plugin_src.js
JavaScript
oos
1,589
<!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> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="jscripts/embed.js"></script> <scrip...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/preview/preview.html
HTML
oos
630
/** * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose. */ function writeFlash(p) { writeEmbed( 'D27CDB6E-AE6D-11cf-96B8-444553540000', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', 'application/x-s...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/preview/jscripts/embed.js
JavaScript
oos
1,938
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM; ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/contextmenu/editor_plugin_src.js
JavaScript
oos
5,227
/** * editor_plugin_src.js * * Copyright 2011, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.AutolinkPlugin', { /** * Initializes the plugin, thi...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/autolink/editor_plugin_src.js
JavaScript
oos
5,308
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { function findParentLayer(node) { do { if (node.className && node.cla...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/layer/editor_plugin_src.js
JavaScript
oos
6,747
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var TreeWalker = tinymce.dom.TreeWalker; var externalName = 'contentedita...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/noneditable/editor_plugin_src.js
JavaScript
oos
17,154
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.InsertDateTime', { init : function(ed, u...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/insertdatetime/editor_plugin_src.js
JavaScript
oos
2,860
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.AdvancedImagePlugin', { init : function(...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advimage/editor_plugin_src.js
JavaScript
oos
1,391
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#advimage_dlg.dialog_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advimage/image.htm
HTML
oos
12,086
var ImageDialog = { preInit : function() { var url; tinyMCEPopup.requireLangPack(); if (url = tinyMCEPopup.getParam("external_image_list_url")) document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>'); }, ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advimage/js/image.js
JavaScript
oos
12,909
#src_list, #over_list, #out_list {width:280px;} .mceActionPanel {margin-top:7px;} .alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} .checkbox {border:0;} .panel_wrapper div.current {height:305px;} #prev {margin:0; border:1px solid #000; width:428px; height:150px; overf...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advimage/css/advimage.css
CSS
oos
672
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { /** * Auto Resize * * This plugin automatically resizes the content area to fit ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/autoresize/editor_plugin_src.js
JavaScript
oos
4,039
/** * editor_plugin_src.js * * Copyright 2011, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each, Event = tinymce.dom.Event, bookmark; // Skips text nodes th...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/lists/editor_plugin_src.js
JavaScript
oos
31,576
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#advhr.advhr_desc}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="js/rule.j...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advhr/rule.htm
HTML
oos
2,422
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.AdvancedHRPlugin', { init : function(ed,...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advhr/editor_plugin_src.js
JavaScript
oos
1,442
var AdvHRDialog = { init : function(ed) { var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w; w = dom.getAttrib(n, 'width'); f.width.value = w ? parseInt(w) : (dom.getStyle('width') || ''); f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || ''; f.noshad...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advhr/js/rule.js
JavaScript
oos
1,322
input.radio {border:1px none #000; background:transparent; vertical-align:middle;} .panel_wrapper div.current {height:80px;} #width {width:50px; vertical-align:middle;} #width2 {width:50px; vertical-align:middle;} #size {width:100px;}
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advhr/css/advhr.css
CSS
oos
240
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#searchreplace_dlg.replace_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript"...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/searchreplace/searchreplace.htm
HTML
oos
5,334
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.SearchReplacePlugin', { init : function(...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/searchreplace/editor_plugin_src.js
JavaScript
oos
1,795
tinyMCEPopup.requireLangPack(); var SearchReplaceDialog = { init : function(ed) { var t = this, f = document.forms[0], m = tinyMCEPopup.getWindowArg("mode"); t.switchMode(m); f[m + '_panel_searchstring'].value = tinyMCEPopup.getWindowArg("search_string"); // Focus input field f[m + '_panel_sea...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/searchreplace/js/searchreplace.js
JavaScript
oos
3,688
.panel_wrapper {height:85px;} .panel_wrapper div.current {height:85px;} /* IE */ * html .panel_wrapper {height:100px;} * html .panel_wrapper div.current {height:100px;}
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/searchreplace/css/searchreplace.css
CSS
oos
176
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing * * Adds auto-save capability to the TinyMCE text editor to rescue content * inadvertently lo...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/autosave/editor_plugin_src.js
JavaScript
oos
13,766
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each; tinymce.create('tinymce.plugins.TemplatePlugin...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/template/editor_plugin_src.js
JavaScript
oos
4,986
tinyMCEPopup.requireLangPack(); var TemplateDialog = { preInit : function() { var url = tinyMCEPopup.getParam("template_external_list_url"); if (url != null) document.write('<sc'+'ript language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></sc'+'...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/template/js/template.js
JavaScript
oos
2,777
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>blank_page</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script type="text/javascript"> parent.TemplateDialog.loadCSSFiles(document); </script> </head> <body id="mceTemplatePreview" class="mceContentBody"> </body...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/template/blank.htm
HTML
oos
332
#frmbody { padding: 10px; background-color: #FFF; border: 1px solid #CCC; } .frmRow { margin-bottom: 10px; } #templatesrc { border: none; width: 320px; height: 240px; } .title { padding-bottom: 5px; } .mceActionPanel { padding-top: 5px; }
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/template/css/template.css
CSS
oos
275
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#template_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="js/template.js"></script> <link href="css/template.css" rel="stylesheet" type="text/css" /> </head> <body onresize...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/template/template.htm
HTML
oos
1,441
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing * * This plugin will force TinyMCE to produce deprecated legacy output such as font elements, u...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/legacyoutput/editor_plugin_src.js
JavaScript
oos
5,077
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each, Node = tinymce.html.Node; tinymce.create('tiny...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/fullpage/editor_plugin_src.js
JavaScript
oos
11,568
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#fullpage_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="../../u...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/fullpage/fullpage.htm
HTML
oos
10,754
/** * fullpage.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinyMCEPopup.requireLangPack(); var defaultDocTypes = 'XHTML 1.0 Transitiona...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/fullpage/js/fullpage.js
JavaScript
oos
8,164
/* Hide the advanced tab */ #advanced_tab { display: none; } #metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright { width: 280px; } #doctype, #docencoding { width: 200px; } #langcode { width: 30px; } #bgimage { width: 220px; } #fontface { width: 240px; } #leftma...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/fullpage/css/fullpage.css
CSS
oos
2,188
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.PageBreakPlugin', { init : function(ed, ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/pagebreak/editor_plugin_src.js
JavaScript
oos
2,161
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function(tinymce) { tinymce.create('tinymce.plugins.EmotionsPlugin', { init : functio...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/emotions/editor_plugin_src.js
JavaScript
oos
1,220
tinyMCEPopup.requireLangPack(); var EmotionsDialog = { addKeyboardNavigation: function(){ var tableElm, cells, settings; cells = tinyMCEPopup.dom.select("a.emoticon_link", "emoticon_table"); settings ={ root: "emoticon_table", items: cells }; cells[0].tabindex=0; tinyMCEPopup.do...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/emotions/js/emotions.js
JavaScript
oos
1,120
<!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> <title>{#emotions_dlg.title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/emotions/emotions.htm
HTML
oos
5,972
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each; tinymce.create('tinymce.plugins.AdvListPlugin'...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/advlist/editor_plugin_src.js
JavaScript
oos
4,726
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.VisualChars', { init : function(ed, url)...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/visualchars/editor_plugin_src.js
JavaScript
oos
2,195
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.title_ins_element}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/ins.htm
HTML
oos
7,299
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.title_del_element}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/del.htm
HTML
oos
7,294
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.XHTMLXtrasPlugin', { init : function(ed,...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/editor_plugin_src.js
JavaScript
oos
4,098
/** * ins.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('ins'); if (SXE.currentAction == "update") { setFormValue(...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/ins.js
JavaScript
oos
1,356
/** * del.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('del'); if (SXE.currentAction == "update") { setFormValue(...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/del.js
JavaScript
oos
1,356
/** * element_common.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ tinyMCEPopup.requireLangPack(); function initCommonAttributes(elm) { var formObj = docume...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/element_common.js
JavaScript
oos
7,159
/** * cite.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('cite'); if (SXE.currentAction == "update") { SXE.showRem...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/cite.js
JavaScript
oos
541
/** * attributes.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { tinyMCEPopup.resizeToInnerSize(); var inst = tinyMCEPopup.editor; var dom ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/attributes.js
JavaScript
oos
3,471
/** * acronym.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('acronym'); if (SXE.currentAction == "update") { SXE.s...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/acronym.js
JavaScript
oos
559
/** * abbr.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('abbr'); if (SXE.currentAction == "update") { SXE.showRem...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/js/abbr.js
JavaScript
oos
541
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.title_abbr_element}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascrip...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/abbr.htm
HTML
oos
6,243
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.title_cite_element}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascrip...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/cite.htm
HTML
oos
6,243
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.attribs_title}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" sr...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/attributes.htm
HTML
oos
6,232
input.field, select.field {width:200px;} input.picker {width:179px; margin-left: 5px;} input.disabled {border-color:#F2F2F2;} img.picker {vertical-align:text-bottom; cursor:pointer;} h1 {padding: 0 0 5px 0;} .panel_wrapper div.current {height:160px;} #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .pane...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/css/popup.css
CSS
oos
514
.panel_wrapper div.current { height: 290px; } #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { width: 200px; } #events_panel input { width: 200px; }
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/css/attributes.css
CSS
oos
197
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#xhtmlxtras_dlg.title_acronym_element}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javasc...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/xhtmlxtras/acronym.htm
HTML
oos
6,258
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#paste.paste_text_desc}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="js/pastetext.js"></script> </head> <body onresize="PasteTextDialog.resize();" style="display:none; overflow:hidde...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/paste/pastetext.htm
HTML
oos
1,209
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var each = tinymce.each, defs = { paste_auto_cleanup_on_paste : true...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/paste/editor_plugin_src.js
JavaScript
oos
31,475
tinyMCEPopup.requireLangPack(); var PasteTextDialog = { init : function() { this.resize(); }, insert : function() { var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines; // Convert linebreaks into paragraphs if (document.getElementById('linebreaks').checked) { li...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/paste/js/pastetext.js
JavaScript
oos
884
tinyMCEPopup.requireLangPack(); var PasteWordDialog = { init : function() { var ed = tinyMCEPopup.editor, el = document.getElementById('iframecontainer'), ifr, doc, css, cssHTML = ''; // Create iframe el.innerHTML = '<iframe id="iframe" src="javascript:\'\';" frameBorder="0" style="border: 1px solid gra...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/paste/js/pasteword.js
JavaScript
oos
1,647
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{#paste.paste_word_desc}</title> <script type="text/javascript" src="../../tiny_mce_popup.js"></script> <script type="text/javascript" src="js/pasteword.js"></script> </head> <body onresize="PasteWordDialog.resize();" style="display:none; overflow:hidde...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/paste/pasteword.htm
HTML
oos
783
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.BBCodePlugin', { init : function(ed, url...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/bbcode/editor_plugin_src.js
JavaScript
oos
4,361
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.Nonbreaking', { init : function(ed, url)...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/js/tinymce/plugins/nonbreaking/editor_plugin_src.js
JavaScript
oos
1,521
/** * @license Highcharts JS v3.0.2 (2013-06-05) * MooTools adapter * * (c) 2010-2013 Torstein Hønsi * * License: www.highcharts.com/license */ // JSLint options: /*global Fx, $, $extend, $each, $merge, Events, Event, DOMEvent */ (function () { var win = window, doc = document, mooVersion = win.MooTools.ver...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/adapters/mootools-adapter.src.js
JavaScript
oos
7,790
/** * Dark blue theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ["#DDDF0D", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee", "#ff0066", "#eeaaee", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], chart: { backgroundColor: { linearGradient: [0, 0, 250, 500], stops: [ [0, 'rgb(...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/themes/dark-green.js
JavaScript
oos
4,339
/** * Skies theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ["#514F78", "#42A07B", "#9B5E4A", "#72727F", "#1F949A", "#82914E", "#86777F", "#42A07B"], chart: { className: 'skies', borderWidth: 0, plotShadow: true, plotBackgroundImage: '/demo/gfx/skies.jpg', plotBackground...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/themes/skies.js
JavaScript
oos
1,740
/** * Gray theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ["#DDDF0D", "#7798BF", "#55BF3B", "#DF5353", "#aaeeee", "#ff0066", "#eeaaee", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], chart: { backgroundColor: { linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 }, stops: [ ...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/themes/gray.js
JavaScript
oos
4,488
/** * Dark blue theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ["#DDDF0D", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee", "#ff0066", "#eeaaee", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], chart: { backgroundColor: { linearGradient: { x1: 0, y1: 0, x2: 1, y2: 1 }, stops: [...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/themes/dark-blue.js
JavaScript
oos
4,352
/** * Grid theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ['#058DC7', '#50B432', '#ED561B', '#DDDF00', '#24CBE5', '#64E572', '#FF9655', '#FFF263', '#6AF9C4'], chart: { backgroundColor: { linearGradient: { x1: 0, y1: 0, x2: 1, y2: 1 }, stops: [ [0, 'rgb(255, 255, 255)'...
0014006002014-d-s-p-l-n-n-h-a-t-n-v
trunk/public/theme/manage/analytics/js/themes/grid.js
JavaScript
oos
1,795