code
stringlengths
1
2.08M
language
stringclasses
1 value
tinyMCE.addI18n('sv.example',{ desc : 'Detta är bara en mallknapp' });
JavaScript
tinyMCE.addI18n('en.example_dlg',{ title : 'This is just a example title' });
JavaScript
tinyMCE.addI18n('ja.example_dlg',{ title : 'これは見出しの例です' });
JavaScript
tinyMCE.addI18n('it.example',{ desc : 'Esempio di pulsante' });
JavaScript
tinyMCE.addI18n('zh.example_dlg',{ title : '这是示例标题' });
JavaScript
tinyMCE.addI18n('ru.example_dlg',{ title : 'Это просто пример заголовка' });
JavaScript
tinyMCE.addI18n('en_us.example',{ desc : 'This is just a template button' });
JavaScript
tinyMCE.addI18n('sv.example_dlg',{ title : 'Detta är bara ett exempel på en titel' });
JavaScript
tinyMCE.addI18n('ja.example',{ desc : 'これはテンプレートボタンです' });
JavaScript
tinyMCE.addI18n('en.example',{ desc : 'This is just a template button' });
JavaScript
/** * 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; tinymce.create('tinymce.plugins.FullScreenPlugin...
JavaScript
/** * 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,...
JavaScript
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...
JavaScript
/** * 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...
JavaScript
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...
JavaScript
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...
JavaScript
/** * 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)...
JavaScript
/** * 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 conten...
JavaScript
/** * 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...
JavaScript
/** * 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...
JavaScript
/** * 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...
JavaScript
/** * 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...
JavaScript
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...
JavaScript
/** * 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() { // Load plugin specific language pack tinymce.PluginManager.requireLangPa...
JavaScript
tinyMCEPopup.requireLangPack(); var UmbracoEmbedDialog = { insert: function () { // Insert the contents from the input into the document tinyMCEPopup.editor.execCommand('mceInsertContent', false, $('#source').val()); tinyMCEPopup.close(); }, showPreview: function () { ...
JavaScript
tinyMCE.addI18n('zh.embed_dlg', { title: '嵌入第三方媒体', general: '普通', url: '链接:', size: '尺寸:', constrain_proportions: '约束比例', preview: '预览', source: '源' });
JavaScript
tinyMCE.addI18n('it.embed_dlg', { title: 'Integra media di terze parti', general: 'Generale', url: 'Url:', size: 'Dimensione:', constrain_proportions: 'Vincolo', preview: 'Anteprima', source: 'Sorgente' });
JavaScript
tinyMCE.addI18n('en_us.embed_dlg', { title: 'Embed third party media', general: 'General', url: 'Url:', size: 'Size:', constrain_proportions: 'Constrain', preview: 'Preview', source: 'Source' });
JavaScript
tinyMCE.addI18n('ru.embed_dlg', { title: 'Вставить внеший элемент медиа', general: 'Общее', url: 'Ссылка:', size: 'Размер:', constrain_proportions: 'Сохранять пропорции', preview: 'Просмотр', source: 'Источник' });
JavaScript
tinyMCE.addI18n('sv.embed_dlg', { title: 'Bädda in tredjeparts media', general: 'Generell', url: 'Url:', size: 'Storlek:', constrain_proportions: 'Bibehåll proportioner', preview: 'Förhandsgranska', source: 'Källa' });
JavaScript
tinyMCE.addI18n('de.embed_dlg', { title: 'Medien von Drittanbietern einbetten', general: 'Allgemein', url: 'Url:', size: 'Abmessungen:', constrain_proportions: 'Proportionen beibehalten', preview: 'Vorschau', source: 'Quellcode' });
JavaScript
tinyMCE.addI18n('en.embed_dlg', { title: 'Embed third party media', general: 'General', url: 'Url:', size: 'Size:', constrain_proportions: 'Constrain', preview: 'Preview', source: 'Source' });
JavaScript
tinyMCE.addI18n('ja.embed_dlg', { title: サードパーティメディアの埋め込み', general: '一般', url: 'Url:', size: 'サイズ:', constrain_proportions: '制約', preview: 'プレビュー', source: 'ソース' });
JavaScript
tinyMCE.addI18n('en.embed_dlg', { title: 'Integra media di terze parti', general: 'Generale', url: 'Url:', size: 'Dimensione:', constrain_proportions: 'Vincolo', preview: 'Anteprima', source: 'Sorgente' });
JavaScript
tinyMCE.addI18n('zh.embed_dlg', { title: '嵌入第三方媒体', general: '普通', url: '链接:', size: '尺寸:', constrain_proportions: '约束比例', preview: '预览', source: '源' });
JavaScript
tinyMCE.addI18n('da.umbracoembed', { desc: 'Inds\u00E6t ekstern mediefil' });
JavaScript
tinyMCE.addI18n('ru.embed_dlg', { title: 'Вставить внеший элемент медиа', general: 'Общее', url: 'Ссылка:', size: 'Размер:', constrain_proportions: 'Сохранять пропорции', preview: 'Просмотр', source: 'Источник' });
JavaScript
tinyMCE.addI18n('en_us.umbracoembed', { desc: 'Embed third party media' });
JavaScript
tinyMCE.addI18n('de.embed_dlg', { title: 'Medien von Drittanbietern einbetten', general: 'Allgemein', url: 'Url:', size: 'Abmessungen:', constrain_proportions: 'Proportionen beibehalten', preview: 'Vorschau', source: 'Quellcode' });
JavaScript
tinyMCE.addI18n('sv.embed_dlg', { title: 'Bädda in tredjeparts media', general: 'Generell', url: 'Url:', size: 'Storlek:', constrain_proportions: 'Bibehåll proportioner', preview: 'Förhandsgranska', source: 'Källa' });
JavaScript
tinyMCE.addI18n('da.embed_dlg', { title: 'Inds\u00E6t ekstern mediefil', general: 'Generelt', url: 'Url:', size: 'Dimensioner:', constrain_proportions: 'Bevar proportioner', preview: 'Vis', source: 'Vis kilde' });
JavaScript
tinyMCE.addI18n('ja.embed_dlg', { title: 'サードパーティメディアの埋め込み', general: '一般', url: 'Url:', size: 'サイズ:', constrain_proportions: '制約', preview: 'プレビュー', source: 'ソース' });
JavaScript
tinyMCE.addI18n('en.umbracoembed', { desc: 'Embed third party media' });
JavaScript
/** * 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, ...
JavaScript
/** * 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)...
JavaScript
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;"...
JavaScript
/** * editor_plugin_src.js * * Copyright 2012, Umbraco * Released under MIT License. * * License: http://opensource.org/licenses/mit-license.html */ (function () { var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM; /** * This plugin modifies the standard TinyMCE context m...
JavaScript
/** * 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'...
JavaScript
/** * 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 th...
JavaScript
/** * 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 ...
JavaScript
/** * 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...
JavaScript
/** * 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, expl...
JavaScript
/** * 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) { ...
JavaScript
/** * 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.IESpell', { init : function(ed, url) { ...
JavaScript
tinyMCEPopup.requireLangPack(); var ExampleDialog = { init : function() { var f = document.forms[0]; // Get the selected contents as text and place it in the input f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_a...
JavaScript
tinyMCE.addI18n('zh.umbracomacro',{ desc : '插入宏' });
JavaScript
tinyMCE.addI18n('en_us.example_dlg',{ title : 'This is just a example title' });
JavaScript
tinyMCE.addI18n('ru.umbracomacro',{ desc : 'Вставить макрос' });
JavaScript
tinyMCE.addI18n('he.umbracomacro',{ desc : 'הוסף מאקרו' });
JavaScript
tinyMCE.addI18n('sv.umbracomacro',{ desc : 'Infoga makro' });
JavaScript
tinyMCE.addI18n('en.example_dlg',{ title : 'This is just a example title' });
JavaScript
tinyMCE.addI18n('ja.example_dlg',{ title : 'これはタイトルの例です' });
JavaScript
tinyMCE.addI18n('zh.example_dlg',{ title : '这是示例标题' });
JavaScript
tinyMCE.addI18n('he.example_dlg',{ title : 'This is just a example title' });
JavaScript
tinyMCE.addI18n('en_us.umbracomacro',{ desc : 'Insert macro' });
JavaScript
tinyMCE.addI18n('sv.example_dlg',{ title : 'Detta är bar ett exempel på en titel' });
JavaScript
tinyMCE.addI18n('ja.umbracomacro',{ desc : 'マクロの挿入' });
JavaScript
tinyMCE.addI18n('en.umbracomacro',{ desc : 'Insert macro' });
JavaScript
/** * 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.AdvancedLinkPlugin', { init : function(e...
JavaScript
/* Functions for the advlink plugin popup */ tinyMCEPopup.requireLangPack(); var templates = { "window.open" : "window.open('${url}','${target}','${options}')" }; function preinit() { var url; if (url = tinyMCEPopup.getParam("external_link_list_url")) document.write('<script language="javascript" t...
JavaScript
/** * 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...
JavaScript
tinyMCE.addI18n('en_us.autosave',{ restore_content: "Restore auto-saved content", warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" });
JavaScript
tinyMCE.addI18n('en.autosave',{ restore_content: "Restore auto-saved content", warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" });
JavaScript
/** * 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...
JavaScript
/** * 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) { ...
JavaScript
/** * 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() { // Load plugin specific language pack tinymce.PluginManager.requireLangPa...
JavaScript
tinyMCEPopup.requireLangPack(); var ExampleDialog = { init : function() { var f = document.forms[0]; // Get the selected contents as text and place it in the input f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_a...
JavaScript
tinyMCE.addI18n('en.example_dlg',{ title : 'This is just a example title' });
JavaScript
tinyMCE.addI18n('en.example',{ desc : 'This is just a template button' });
JavaScript
/** * editor_plugin_src.js * * Copyright 2012, Umbraco * Released under MIT License. * * License: http://opensource.org/licenses/mit-license.html */ (function () { var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM; /** * This plugin modifies the standard TinyMCE paste, wi...
JavaScript
/** * 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, ...
JavaScript
/** * 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...
JavaScript
/** * 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', { /** * ...
JavaScript
/** * 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...
JavaScript
/** * 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...
JavaScript
(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...
JavaScript
tinyMCE.addI18n('es.media_dlg',{ title:"Insertar/editar medio embebido", general:"General", advanced:"Avanzado", file:"Archivo/URL", list:"Lista", size:"Dimensiones", preview:"Vista Previa", constrain_proportions:"Bloquear relaci\u00F3n de aspecto", type:"Tipo", id:"Id", name:"Nombre", class_name:"Clase", ...
JavaScript
/** * 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...
JavaScript
/** * 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) { ...
JavaScript
(function () { tinymce.create('tinymce.plugins.Umbracoshortcut', { init: function (ed, url) { var t = this; var ctrlPressed = false; t.editor = ed; ed.onKeyDown.add(function (ed, e) { if (e.keyCode == 17) ctrlP...
JavaScript
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(ur...
JavaScript
tinyMCE.addI18n('it.umbimage_dlg', { tab_general: 'Generale', tab_appearance: 'Aspetto', tab_advanced: 'Avanzate', general: 'Generale', title: 'Titolo', preview: 'Anteprima', constrain_proportions: 'Vincola proporzioni', langdir: 'Direzione lingua', langcode: 'Codice lingua...
JavaScript
tinyMCE.addI18n('en_us.umbimage_dlg', { tab_general: 'General', tab_appearance: 'Appearance', tab_advanced: 'Advanced', general: 'General', title: 'Title', preview: 'Preview', constrain_proportions: 'Constrain proportions', langdir: 'Language direction', langcode: 'Language...
JavaScript
tinyMCE.addI18n('en.umbimage_dlg', { tab_general: 'General', tab_appearance: 'Appearance', tab_advanced: 'Advanced', general: 'General', title: 'Title', preview: 'Preview', constrain_proportions: 'Constrain proportions', langdir: 'Language direction', langcode: 'Language co...
JavaScript
tinyMCE.addI18n('ja.umbimage_dlg', { tab_general: '一般', tab_appearance: '表示', tab_advanced: '高度な設定', general: '一般', title: 'タイトル', preview: 'プレビュー', constrain_proportions: '縦横比の維持', langdir: '文章の方向', langcode: '言語コード', long_desc: '詳細な説明のリンク', style: 'スタイル', c...
JavaScript
tinyMCE.addI18n('zh.umbimage_dlg', { tab_general: '普通', tab_appearance: '外观', tab_advanced: '高级', general: '普通', title: '标题', preview: '预览', constrain_proportions: '约束比例', langdir: '语言书写方向', langcode: '语言代码', long_desc: '长原文链接', style: '样式', classes: '类', ...
JavaScript
tinyMCE.addI18n('ru.umbimage_dlg', { tab_general: 'Общее', tab_appearance: 'Вид', tab_advanced: 'Дополнительно', general: 'Общие свойства', title: 'Заголовок', preview: 'Предпросмотр', constrain_proportions: 'Сохранять пропорции', langdir: 'Направление языка', langcode: 'Ко...
JavaScript
tinyMCE.addI18n('he.umbimage_dlg', { tab_general: 'General', tab_appearance: 'Appearance', tab_advanced: 'Advanced', general: 'General', title: 'Title', preview: 'Preview', constrain_proportions: 'Constrain proportions', langdir: 'Language direction', langcode: 'Language co...
JavaScript
tinyMCE.addI18n('sv.umbimage_dlg', { tab_general: 'Generellt', tab_appearance: 'Utseende', tab_advanced: 'Avancerat', general: 'Generellt', title: 'Titel', preview: 'Förhandsgranska', constrain_proportions: 'Bibehåll proportioner', langdir: 'Språkdirektion', langcode: 'Språ...
JavaScript
/** * 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...
JavaScript