parent
dcca7bfc25
commit
1265bc89a4
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 198 KiB |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
@ -0,0 +1,720 @@ |
||||
/*! |
||||
* Author: Abdullah A Almsaeed |
||||
* Date: 4 Jan 2014 |
||||
* Description: |
||||
* This file should be included in all pages |
||||
!**/ |
||||
|
||||
$(function() { |
||||
"use strict"; |
||||
|
||||
//Enable sidebar toggle
|
||||
$("[data-toggle='offcanvas']").click(function(e) { |
||||
e.preventDefault(); |
||||
|
||||
//If window is small enough, enable sidebar push menu
|
||||
if ($(window).width() <= 992) { |
||||
$('.row-offcanvas').toggleClass('active'); |
||||
$('.left-side').removeClass("collapse-left"); |
||||
$(".right-side").removeClass("strech"); |
||||
$('.row-offcanvas').toggleClass("relative"); |
||||
} else { |
||||
//Else, enable content streching
|
||||
$('.left-side').toggleClass("collapse-left"); |
||||
$(".right-side").toggleClass("strech"); |
||||
} |
||||
}); |
||||
|
||||
//Add hover support for touch devices
|
||||
$('.btn').bind('touchstart', function() { |
||||
$(this).addClass('hover'); |
||||
}).bind('touchend', function() { |
||||
$(this).removeClass('hover'); |
||||
}); |
||||
|
||||
//Activate tooltips
|
||||
$("[data-toggle='tooltip']").tooltip(); |
||||
|
||||
/* |
||||
* Add collapse and remove events to boxes |
||||
*/ |
||||
$("[data-widget='collapse']").click(function() { |
||||
//Find the box parent
|
||||
var box = $(this).parents(".box").first(); |
||||
//Find the body and the footer
|
||||
var bf = box.find(".box-body, .box-footer"); |
||||
if (!box.hasClass("collapsed-box")) { |
||||
box.addClass("collapsed-box"); |
||||
bf.slideUp(); |
||||
} else { |
||||
box.removeClass("collapsed-box"); |
||||
bf.slideDown(); |
||||
} |
||||
}); |
||||
|
||||
/* |
||||
* ADD SLIMSCROLL TO THE TOP NAV DROPDOWNS |
||||
* --------------------------------------- |
||||
*/ |
||||
$(".navbar .menu").slimscroll({ |
||||
height: "200px", |
||||
alwaysVisible: false, |
||||
size: "3px" |
||||
}).css("width","100%"); |
||||
|
||||
/* |
||||
* INITIALIZE BUTTON TOGGLE |
||||
* ------------------------ |
||||
*/ |
||||
$('.btn-group[data-toggle="btn-toggle"]').each(function() { |
||||
var group = $(this); |
||||
$(this).find(".btn").click(function(e) { |
||||
group.find(".btn.active").removeClass("active"); |
||||
$(this).addClass("active"); |
||||
e.preventDefault(); |
||||
}); |
||||
|
||||
}); |
||||
|
||||
$("[data-widget='remove']").click(function() { |
||||
//Find the box parent
|
||||
var box = $(this).parents(".box").first(); |
||||
box.slideUp(); |
||||
}); |
||||
|
||||
/* Sidebar tree view */ |
||||
$(".sidebar .treeview").tree(); |
||||
|
||||
/* |
||||
* Make sure that the sidebar is streched full height |
||||
* --------------------------------------------- |
||||
* We are gonna assign a min-height value every time the |
||||
* wrapper gets resized and upon page load. We will use |
||||
* Ben Alman's method for detecting the resize event. |
||||
**/ |
||||
//alert($(window).height());
|
||||
function _fix() { |
||||
//Get window height and the wrapper height
|
||||
var height = $(window).height() - $("body > .header").height(); |
||||
$(".wrapper").css("min-height", height + "px"); |
||||
var content = $(".wrapper").height(); |
||||
//If the wrapper height is greater than the window
|
||||
if (content > height) |
||||
//then set sidebar height to the wrapper
|
||||
$(".left-side, html, body").css("min-height", content + "px"); |
||||
else { |
||||
//Otherwise, set the sidebar to the height of the window
|
||||
$(".left-side, html, body").css("min-height", height + "px"); |
||||
} |
||||
} |
||||
//Fire upon load
|
||||
_fix(); |
||||
//Fire when wrapper is resized
|
||||
$(".wrapper").resize(function() { |
||||
_fix(); |
||||
}); |
||||
|
||||
/* |
||||
* We are gonna initialize all checkbox and radio inputs to |
||||
* iCheck plugin in. |
||||
* You can find the documentation at http://fronteed.com/iCheck/
|
||||
*/ |
||||
$("input[type='checkbox'], input[type='radio']").iCheck({ |
||||
checkboxClass: 'icheckbox_minimal', |
||||
radioClass: 'iradio_minimal' |
||||
}); |
||||
|
||||
}); |
||||
function change_layout() { |
||||
$("body").toggleClass("fixed"); |
||||
} |
||||
/*END DEMO*/ |
||||
|
||||
/* |
||||
* BOX REFRESH BUTTON |
||||
* ------------------ |
||||
* This is a custom plugin to use with the compenet BOX. It allows you to add |
||||
* a refresh button to the box. It converts the box's state to a loading state. |
||||
* |
||||
* USAGE: |
||||
* $("#box-widget").boxRefresh( options ); |
||||
* */ |
||||
(function($) { |
||||
"use strict"; |
||||
|
||||
$.fn.boxRefresh = function(options) { |
||||
|
||||
// Render options
|
||||
var settings = $.extend({ |
||||
//Refressh button selector
|
||||
trigger: ".refresh-btn", |
||||
//File source to be loaded (e.g: ajax/src.php)
|
||||
source: "", |
||||
//Callbacks
|
||||
onLoadStart: function(box) { |
||||
}, //Right after the button has been clicked
|
||||
onLoadDone: function(box) { |
||||
} //When the source has been loaded
|
||||
|
||||
}, options); |
||||
|
||||
//The overlay
|
||||
var overlay = $('<div class="overlay"></div><div class="loading-img"></div>'); |
||||
|
||||
return this.each(function() { |
||||
//if a source is specified
|
||||
if (settings.source === "") { |
||||
if (console) { |
||||
console.log("Please specify a source first - boxRefresh()"); |
||||
} |
||||
return; |
||||
} |
||||
//the box
|
||||
var box = $(this); |
||||
//the button
|
||||
var rBtn = box.find(settings.trigger).first(); |
||||
|
||||
//On trigger click
|
||||
rBtn.click(function(e) { |
||||
e.preventDefault(); |
||||
//Add loading overlay
|
||||
start(box); |
||||
|
||||
//Perform ajax call
|
||||
box.find(".box-body").load(settings.source, function() { |
||||
done(box); |
||||
}); |
||||
|
||||
|
||||
}); |
||||
|
||||
}); |
||||
|
||||
function start(box) { |
||||
//Add overlay and loading img
|
||||
box.append(overlay); |
||||
|
||||
settings.onLoadStart.call(box); |
||||
} |
||||
|
||||
function done(box) { |
||||
//Remove overlay and loading img
|
||||
box.find(overlay).remove(); |
||||
|
||||
settings.onLoadDone.call(box); |
||||
} |
||||
|
||||
}; |
||||
|
||||
})(jQuery); |
||||
|
||||
/* |
||||
* SIDEBAR MENU |
||||
* ------------ |
||||
* This is a custom plugin for the sidebar menu. It provides a tree view. |
||||
* |
||||
* Usage: |
||||
* $(".sidebar).tree(); |
||||
* |
||||
* Note: This plugin does not accept any options. Instead, it only requires a class |
||||
* added to the element that contains a sub-menu. |
||||
* |
||||
* When used with the sidebar, for example, it would look something like this: |
||||
* <ul class='sidebar-menu'> |
||||
* <li class="treeview active"> |
||||
* <a href="#>Menu</a> |
||||
* <ul class='treeview-menu'> |
||||
* <li class='active'><a href=#>Level 1</a></li> |
||||
* </ul> |
||||
* </li> |
||||
* </ul> |
||||
* |
||||
* Add .active class to <li> elements if you want the menu to be open automatically |
||||
* on page load. See above for an example. |
||||
*/ |
||||
(function($) { |
||||
"use strict"; |
||||
|
||||
$.fn.tree = function() { |
||||
|
||||
return this.each(function() { |
||||
var btn = $(this).children("a").first(); |
||||
var menu = $(this).children(".treeview-menu").first(); |
||||
var isActive = $(this).hasClass('active'); |
||||
|
||||
//initialize already active menus
|
||||
if (isActive) { |
||||
menu.show(); |
||||
btn.children(".fa-angle-left").first().removeClass("fa-angle-left").addClass("fa-angle-down"); |
||||
} |
||||
//Slide open or close the menu on link click
|
||||
btn.click(function(e) { |
||||
e.preventDefault(); |
||||
if (isActive) { |
||||
//Slide up to close menu
|
||||
menu.slideUp(); |
||||
isActive = false; |
||||
btn.children(".fa-angle-down").first().removeClass("fa-angle-down").addClass("fa-angle-left"); |
||||
btn.parent("li").removeClass("active"); |
||||
} else { |
||||
//Slide down to open menu
|
||||
menu.slideDown(); |
||||
isActive = true; |
||||
btn.children(".fa-angle-left").first().removeClass("fa-angle-left").addClass("fa-angle-down"); |
||||
btn.parent("li").addClass("active"); |
||||
} |
||||
}); |
||||
|
||||
/* Add margins to submenu elements to give it a tree look */ |
||||
menu.find("li > a").each(function() { |
||||
var pad = parseInt($(this).css("margin-left")) + 10; |
||||
|
||||
$(this).css({"margin-left": pad + "px"}); |
||||
}); |
||||
|
||||
}); |
||||
|
||||
}; |
||||
|
||||
|
||||
}(jQuery)); |
||||
|
||||
/* |
||||
* TODO LIST CUSTOM PLUGIN |
||||
* ----------------------- |
||||
* This plugin depends on iCheck plugin for checkbox and radio inputs |
||||
*/ |
||||
(function($) { |
||||
"use strict"; |
||||
|
||||
$.fn.todolist = function(options) { |
||||
// Render options
|
||||
var settings = $.extend({ |
||||
//When the user checks the input
|
||||
onCheck: function(ele) { |
||||
}, |
||||
//When the user unchecks the input
|
||||
onUncheck: function(ele) { |
||||
} |
||||
}, options); |
||||
|
||||
return this.each(function() { |
||||
$('input', this).on('ifChecked', function(event) { |
||||
var ele = $(this).parents("li").first(); |
||||
ele.toggleClass("done"); |
||||
settings.onCheck.call(ele); |
||||
}); |
||||
|
||||
$('input', this).on('ifUnchecked', function(event) { |
||||
var ele = $(this).parents("li").first(); |
||||
ele.toggleClass("done"); |
||||
settings.onUncheck.call(ele); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
}(jQuery)); |
||||
|
||||
/* CENTER ELEMENTS */ |
||||
(function($) { |
||||
"use strict"; |
||||
jQuery.fn.center = function(parent) { |
||||
if (parent) { |
||||
parent = this.parent(); |
||||
} else { |
||||
parent = window; |
||||
} |
||||
this.css({ |
||||
"position": "absolute", |
||||
"top": ((($(parent).height() - this.outerHeight()) / 2) + $(parent).scrollTop() + "px"), |
||||
"left": ((($(parent).width() - this.outerWidth()) / 2) + $(parent).scrollLeft() + "px") |
||||
}); |
||||
return this; |
||||
} |
||||
}(jQuery)); |
||||
|
||||
/* |
||||
* jQuery resize event - v1.1 - 3/14/2010 |
||||
* http://benalman.com/projects/jquery-resize-plugin/
|
||||
* |
||||
* Copyright (c) 2010 "Cowboy" Ben Alman |
||||
* Dual licensed under the MIT and GPL licenses. |
||||
* http://benalman.com/about/license/
|
||||
*/ |
||||
(function($, h, c) { |
||||
var a = $([]), e = $.resize = $.extend($.resize, {}), i, k = "setTimeout", j = "resize", d = j + "-special-event", b = "delay", f = "throttleWindow"; |
||||
e[b] = 250; |
||||
e[f] = true; |
||||
$.event.special[j] = {setup: function() { |
||||
if (!e[f] && this[k]) { |
||||
return false; |
||||
} |
||||
var l = $(this); |
||||
a = a.add(l); |
||||
$.data(this, d, {w: l.width(), h: l.height()}); |
||||
if (a.length === 1) { |
||||
g(); |
||||
} |
||||
}, teardown: function() { |
||||
if (!e[f] && this[k]) { |
||||
return false |
||||
} |
||||
var l = $(this); |
||||
a = a.not(l); |
||||
l.removeData(d); |
||||
if (!a.length) { |
||||
clearTimeout(i); |
||||
} |
||||
}, add: function(l) { |
||||
if (!e[f] && this[k]) { |
||||
return false |
||||
} |
||||
var n; |
||||
function m(s, o, p) { |
||||
var q = $(this), r = $.data(this, d); |
||||
r.w = o !== c ? o : q.width(); |
||||
r.h = p !== c ? p : q.height(); |
||||
n.apply(this, arguments) |
||||
} |
||||
if ($.isFunction(l)) { |
||||
n = l; |
||||
return m |
||||
} else { |
||||
n = l.handler; |
||||
l.handler = m |
||||
} |
||||
}}; |
||||
function g() { |
||||
i = h[k](function() { |
||||
a.each(function() { |
||||
var n = $(this), m = n.width(), l = n.height(), o = $.data(this, d); |
||||
if (m !== o.w || l !== o.h) { |
||||
n.trigger(j, [o.w = m, o.h = l]) |
||||
} |
||||
}); |
||||
g() |
||||
}, e[b]) |
||||
}} |
||||
)(jQuery, this); |
||||
|
||||
/*! |
||||
* iCheck v1.0.1, http://git.io/arlzeA
|
||||
* ================================= |
||||
* Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization |
||||
* |
||||
* (c) 2013 Damir Sultanov, http://fronteed.com
|
||||
* MIT Licensed |
||||
*/ |
||||
(function(f) { |
||||
jQuery.fn.extend({slimScroll: function(h) { |
||||
var a = f.extend({width: "auto", height: "250px", size: "7px", color: "#000", position: "right", distance: "1px", start: "top", opacity: 0.4, alwaysVisible: !1, disableFadeOut: !1, railVisible: !1, railColor: "#333", railOpacity: 0.2, railDraggable: !0, railClass: "slimScrollRail", barClass: "slimScrollBar", wrapperClass: "slimScrollDiv", allowPageScroll: !1, wheelStep: 20, touchScrollStep: 200, borderRadius: "0px", railBorderRadius: "0px"}, h); |
||||
this.each(function() { |
||||
function r(d) { |
||||
if (s) { |
||||
d = d || |
||||
window.event; |
||||
var c = 0; |
||||
d.wheelDelta && (c = -d.wheelDelta / 120); |
||||
d.detail && (c = d.detail / 3); |
||||
f(d.target || d.srcTarget || d.srcElement).closest("." + a.wrapperClass).is(b.parent()) && m(c, !0); |
||||
d.preventDefault && !k && d.preventDefault(); |
||||
k || (d.returnValue = !1) |
||||
} |
||||
} |
||||
function m(d, f, h) { |
||||
k = !1; |
||||
var e = d, g = b.outerHeight() - c.outerHeight(); |
||||
f && (e = parseInt(c.css("top")) + d * parseInt(a.wheelStep) / 100 * c.outerHeight(), e = Math.min(Math.max(e, 0), g), e = 0 < d ? Math.ceil(e) : Math.floor(e), c.css({top: e + "px"})); |
||||
l = parseInt(c.css("top")) / (b.outerHeight() - c.outerHeight()); |
||||
e = l * (b[0].scrollHeight - b.outerHeight()); |
||||
h && (e = d, d = e / b[0].scrollHeight * b.outerHeight(), d = Math.min(Math.max(d, 0), g), c.css({top: d + "px"})); |
||||
b.scrollTop(e); |
||||
b.trigger("slimscrolling", ~~e); |
||||
v(); |
||||
p() |
||||
} |
||||
function C() { |
||||
window.addEventListener ? (this.addEventListener("DOMMouseScroll", r, !1), this.addEventListener("mousewheel", r, !1), this.addEventListener("MozMousePixelScroll", r, !1)) : document.attachEvent("onmousewheel", r) |
||||
} |
||||
function w() { |
||||
u = Math.max(b.outerHeight() / b[0].scrollHeight * b.outerHeight(), D); |
||||
c.css({height: u + "px"}); |
||||
var a = u == b.outerHeight() ? "none" : "block"; |
||||
c.css({display: a}) |
||||
} |
||||
function v() { |
||||
w(); |
||||
clearTimeout(A); |
||||
l == ~~l ? (k = a.allowPageScroll, B != l && b.trigger("slimscroll", 0 == ~~l ? "top" : "bottom")) : k = !1; |
||||
B = l; |
||||
u >= b.outerHeight() ? k = !0 : (c.stop(!0, !0).fadeIn("fast"), a.railVisible && g.stop(!0, !0).fadeIn("fast")) |
||||
} |
||||
function p() { |
||||
a.alwaysVisible || (A = setTimeout(function() { |
||||
a.disableFadeOut && s || (x || y) || (c.fadeOut("slow"), g.fadeOut("slow")) |
||||
}, 1E3)) |
||||
} |
||||
var s, x, y, A, z, u, l, B, D = 30, k = !1, b = f(this); |
||||
if (b.parent().hasClass(a.wrapperClass)) { |
||||
var n = b.scrollTop(), |
||||
c = b.parent().find("." + a.barClass), g = b.parent().find("." + a.railClass); |
||||
w(); |
||||
if (f.isPlainObject(h)) { |
||||
if ("height"in h && "auto" == h.height) { |
||||
b.parent().css("height", "auto"); |
||||
b.css("height", "auto"); |
||||
var q = b.parent().parent().height(); |
||||
b.parent().css("height", q); |
||||
b.css("height", q) |
||||
} |
||||
if ("scrollTo"in h) |
||||
n = parseInt(a.scrollTo); |
||||
else if ("scrollBy"in h) |
||||
n += parseInt(a.scrollBy); |
||||
else if ("destroy"in h) { |
||||
c.remove(); |
||||
g.remove(); |
||||
b.unwrap(); |
||||
return |
||||
} |
||||
m(n, !1, !0) |
||||
} |
||||
} else { |
||||
a.height = "auto" == a.height ? b.parent().height() : a.height; |
||||
n = f("<div></div>").addClass(a.wrapperClass).css({position: "relative", |
||||
overflow: "hidden", width: a.width, height: a.height}); |
||||
b.css({overflow: "hidden", width: a.width, height: a.height}); |
||||
var g = f("<div></div>").addClass(a.railClass).css({width: a.size, height: "100%", position: "absolute", top: 0, display: a.alwaysVisible && a.railVisible ? "block" : "none", "border-radius": a.railBorderRadius, background: a.railColor, opacity: a.railOpacity, zIndex: 90}), c = f("<div></div>").addClass(a.barClass).css({background: a.color, width: a.size, position: "absolute", top: 0, opacity: a.opacity, display: a.alwaysVisible ? |
||||
"block" : "none", "border-radius": a.borderRadius, BorderRadius: a.borderRadius, MozBorderRadius: a.borderRadius, WebkitBorderRadius: a.borderRadius, zIndex: 99}), q = "right" == a.position ? {right: a.distance} : {left: a.distance}; |
||||
g.css(q); |
||||
c.css(q); |
||||
b.wrap(n); |
||||
b.parent().append(c); |
||||
b.parent().append(g); |
||||
a.railDraggable && c.bind("mousedown", function(a) { |
||||
var b = f(document); |
||||
y = !0; |
||||
t = parseFloat(c.css("top")); |
||||
pageY = a.pageY; |
||||
b.bind("mousemove.slimscroll", function(a) { |
||||
currTop = t + a.pageY - pageY; |
||||
c.css("top", currTop); |
||||
m(0, c.position().top, !1) |
||||
}); |
||||
b.bind("mouseup.slimscroll", function(a) { |
||||
y = !1; |
||||
p(); |
||||
b.unbind(".slimscroll") |
||||
}); |
||||
return!1 |
||||
}).bind("selectstart.slimscroll", function(a) { |
||||
a.stopPropagation(); |
||||
a.preventDefault(); |
||||
return!1 |
||||
}); |
||||
g.hover(function() { |
||||
v() |
||||
}, function() { |
||||
p() |
||||
}); |
||||
c.hover(function() { |
||||
x = !0 |
||||
}, function() { |
||||
x = !1 |
||||
}); |
||||
b.hover(function() { |
||||
s = !0; |
||||
v(); |
||||
p() |
||||
}, function() { |
||||
s = !1; |
||||
p() |
||||
}); |
||||
b.bind("touchstart", function(a, b) { |
||||
a.originalEvent.touches.length && (z = a.originalEvent.touches[0].pageY) |
||||
}); |
||||
b.bind("touchmove", function(b) { |
||||
k || b.originalEvent.preventDefault(); |
||||
b.originalEvent.touches.length && |
||||
(m((z - b.originalEvent.touches[0].pageY) / a.touchScrollStep, !0), z = b.originalEvent.touches[0].pageY) |
||||
}); |
||||
w(); |
||||
"bottom" === a.start ? (c.css({top: b.outerHeight() - c.outerHeight()}), m(0, !0)) : "top" !== a.start && (m(f(a.start).position().top, null, !0), a.alwaysVisible || c.hide()); |
||||
C() |
||||
} |
||||
}); |
||||
return this |
||||
}}); |
||||
jQuery.fn.extend({slimscroll: jQuery.fn.slimScroll}) |
||||
})(jQuery); |
||||
|
||||
/*! iCheck v1.0.1 by Damir Sultanov, http://git.io/arlzeA, MIT Licensed */ |
||||
(function(h) { |
||||
function F(a, b, d) { |
||||
var c = a[0], e = /er/.test(d) ? m : /bl/.test(d) ? s : l, f = d == H ? {checked: c[l], disabled: c[s], indeterminate: "true" == a.attr(m) || "false" == a.attr(w)} : c[e]; |
||||
if (/^(ch|di|in)/.test(d) && !f) |
||||
D(a, e); |
||||
else if (/^(un|en|de)/.test(d) && f) |
||||
t(a, e); |
||||
else if (d == H) |
||||
for (e in f) |
||||
f[e] ? D(a, e, !0) : t(a, e, !0); |
||||
else if (!b || "toggle" == d) { |
||||
if (!b) |
||||
a[p]("ifClicked"); |
||||
f ? c[n] !== u && t(a, e) : D(a, e) |
||||
} |
||||
} |
||||
function D(a, b, d) { |
||||
var c = a[0], e = a.parent(), f = b == l, A = b == m, B = b == s, K = A ? w : f ? E : "enabled", p = k(a, K + x(c[n])), N = k(a, b + x(c[n])); |
||||
if (!0 !== c[b]) { |
||||
if (!d && |
||||
b == l && c[n] == u && c.name) { |
||||
var C = a.closest("form"), r = 'input[name="' + c.name + '"]', r = C.length ? C.find(r) : h(r); |
||||
r.each(function() { |
||||
this !== c && h(this).data(q) && t(h(this), b) |
||||
}) |
||||
} |
||||
A ? (c[b] = !0, c[l] && t(a, l, "force")) : (d || (c[b] = !0), f && c[m] && t(a, m, !1)); |
||||
L(a, f, b, d) |
||||
} |
||||
c[s] && k(a, y, !0) && e.find("." + I).css(y, "default"); |
||||
e[v](N || k(a, b) || ""); |
||||
B ? e.attr("aria-disabled", "true") : e.attr("aria-checked", A ? "mixed" : "true"); |
||||
e[z](p || k(a, K) || "") |
||||
} |
||||
function t(a, b, d) { |
||||
var c = a[0], e = a.parent(), f = b == l, h = b == m, q = b == s, p = h ? w : f ? E : "enabled", t = k(a, p + x(c[n])), |
||||
u = k(a, b + x(c[n])); |
||||
if (!1 !== c[b]) { |
||||
if (h || !d || "force" == d) |
||||
c[b] = !1; |
||||
L(a, f, p, d) |
||||
} |
||||
!c[s] && k(a, y, !0) && e.find("." + I).css(y, "pointer"); |
||||
e[z](u || k(a, b) || ""); |
||||
q ? e.attr("aria-disabled", "false") : e.attr("aria-checked", "false"); |
||||
e[v](t || k(a, p) || "") |
||||
} |
||||
function M(a, b) { |
||||
if (a.data(q)) { |
||||
a.parent().html(a.attr("style", a.data(q).s || "")); |
||||
if (b) |
||||
a[p](b); |
||||
a.off(".i").unwrap(); |
||||
h(G + '[for="' + a[0].id + '"]').add(a.closest(G)).off(".i") |
||||
} |
||||
} |
||||
function k(a, b, d) { |
||||
if (a.data(q)) |
||||
return a.data(q).o[b + (d ? "" : "Class")] |
||||
} |
||||
function x(a) { |
||||
return a.charAt(0).toUpperCase() + |
||||
a.slice(1) |
||||
} |
||||
function L(a, b, d, c) { |
||||
if (!c) { |
||||
if (b) |
||||
a[p]("ifToggled"); |
||||
a[p]("ifChanged")[p]("if" + x(d)) |
||||
} |
||||
} |
||||
var q = "iCheck", I = q + "-helper", u = "radio", l = "checked", E = "un" + l, s = "disabled", w = "determinate", m = "in" + w, H = "update", n = "type", v = "addClass", z = "removeClass", p = "trigger", G = "label", y = "cursor", J = /ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent); |
||||
h.fn[q] = function(a, b) { |
||||
var d = 'input[type="checkbox"], input[type="' + u + '"]', c = h(), e = function(a) { |
||||
a.each(function() { |
||||
var a = h(this); |
||||
c = a.is(d) ? |
||||
c.add(a) : c.add(a.find(d)) |
||||
}) |
||||
}; |
||||
if (/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(a)) |
||||
return a = a.toLowerCase(), e(this), c.each(function() { |
||||
var c = h(this); |
||||
"destroy" == a ? M(c, "ifDestroyed") : F(c, !0, a); |
||||
h.isFunction(b) && b() |
||||
}); |
||||
if ("object" != typeof a && a) |
||||
return this; |
||||
var f = h.extend({checkedClass: l, disabledClass: s, indeterminateClass: m, labelHover: !0, aria: !1}, a), k = f.handle, B = f.hoverClass || "hover", x = f.focusClass || "focus", w = f.activeClass || "active", y = !!f.labelHover, C = f.labelHoverClass || |
||||
"hover", r = ("" + f.increaseArea).replace("%", "") | 0; |
||||
if ("checkbox" == k || k == u) |
||||
d = 'input[type="' + k + '"]'; |
||||
-50 > r && (r = -50); |
||||
e(this); |
||||
return c.each(function() { |
||||
var a = h(this); |
||||
M(a); |
||||
var c = this, b = c.id, e = -r + "%", d = 100 + 2 * r + "%", d = {position: "absolute", top: e, left: e, display: "block", width: d, height: d, margin: 0, padding: 0, background: "#fff", border: 0, opacity: 0}, e = J ? {position: "absolute", visibility: "hidden"} : r ? d : {position: "absolute", opacity: 0}, k = "checkbox" == c[n] ? f.checkboxClass || "icheckbox" : f.radioClass || "i" + u, m = h(G + '[for="' + b + '"]').add(a.closest(G)), |
||||
A = !!f.aria, E = q + "-" + Math.random().toString(36).replace("0.", ""), g = '<div class="' + k + '" ' + (A ? 'role="' + c[n] + '" ' : ""); |
||||
m.length && A && m.each(function() { |
||||
g += 'aria-labelledby="'; |
||||
this.id ? g += this.id : (this.id = E, g += E); |
||||
g += '"' |
||||
}); |
||||
g = a.wrap(g + "/>")[p]("ifCreated").parent().append(f.insert); |
||||
d = h('<ins class="' + I + '"/>').css(d).appendTo(g); |
||||
a.data(q, {o: f, s: a.attr("style")}).css(e); |
||||
f.inheritClass && g[v](c.className || ""); |
||||
f.inheritID && b && g.attr("id", q + "-" + b); |
||||
"static" == g.css("position") && g.css("position", "relative"); |
||||
F(a, !0, H); |
||||
if (m.length) |
||||
m.on("click.i mouseover.i mouseout.i touchbegin.i touchend.i", function(b) { |
||||
var d = b[n], e = h(this); |
||||
if (!c[s]) { |
||||
if ("click" == d) { |
||||
if (h(b.target).is("a")) |
||||
return; |
||||
F(a, !1, !0) |
||||
} else |
||||
y && (/ut|nd/.test(d) ? (g[z](B), e[z](C)) : (g[v](B), e[v](C))); |
||||
if (J) |
||||
b.stopPropagation(); |
||||
else |
||||
return!1 |
||||
} |
||||
}); |
||||
a.on("click.i focus.i blur.i keyup.i keydown.i keypress.i", function(b) { |
||||
var d = b[n]; |
||||
b = b.keyCode; |
||||
if ("click" == d) |
||||
return!1; |
||||
if ("keydown" == d && 32 == b) |
||||
return c[n] == u && c[l] || (c[l] ? t(a, l) : D(a, l)), !1; |
||||
if ("keyup" == d && c[n] == u) |
||||
!c[l] && D(a, l); |
||||
else if (/us|ur/.test(d)) |
||||
g["blur" == |
||||
d ? z : v](x) |
||||
}); |
||||
d.on("click mousedown mouseup mouseover mouseout touchbegin.i touchend.i", function(b) { |
||||
var d = b[n], e = /wn|up/.test(d) ? w : B; |
||||
if (!c[s]) { |
||||
if ("click" == d) |
||||
F(a, !1, !0); |
||||
else { |
||||
if (/wn|er|in/.test(d)) |
||||
g[v](e); |
||||
else |
||||
g[z](e + " " + w); |
||||
if (m.length && y && e == B) |
||||
m[/ut|nd/.test(d) ? z : v](C) |
||||
} |
||||
if (J) |
||||
b.stopPropagation(); |
||||
else |
||||
return!1 |
||||
} |
||||
}) |
||||
}) |
||||
} |
||||
})(window.jQuery || window.Zepto); |
||||
|
||||
(function($){ |
||||
"use strict"; |
||||
$('[data-timepicker]').timepicker(); |
||||
$('[data-datepicker]').datepicker({showInputs: false}); |
||||
|
||||
})(window.jQuery || window.Zepto); |
@ -0,0 +1,247 @@ |
||||
/* |
||||
* Helpers |
||||
*/ |
||||
.number { |
||||
text-align: right !important; |
||||
} |
||||
.truncate { |
||||
white-space: nowrap; |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
} |
||||
|
||||
/* |
||||
* Sonata Demo |
||||
*/ |
||||
|
||||
@media screen and (min-width: 1200px) { |
||||
.sonata-bc .container { |
||||
max-width: 970px; |
||||
} |
||||
} |
||||
|
||||
.sonata-bc .page-header .nav { |
||||
clear: both; |
||||
} |
||||
|
||||
.sonata-bc .block-newsletter { |
||||
text-align: center; |
||||
margin-top: 10px; |
||||
} |
||||
|
||||
.sonata-bc .block-newsletter > div.col-sm-6 { |
||||
min-height: 155px; |
||||
} |
||||
|
||||
.sonata-bc .block-newsletter input[type="email"] { |
||||
margin-bottom: 0px; |
||||
} |
||||
|
||||
.sonata-bc .block-newsletter p { |
||||
font-size: 14px; |
||||
font-weight: bold; |
||||
} |
||||
|
||||
.sonata-bc #newsletter-confirmation { |
||||
margin-top: 20px; |
||||
} |
||||
|
||||
.sonata-bc .page-footer { |
||||
background-color: #dedede; |
||||
margin: 0px; |
||||
} |
||||
|
||||
.sonata-bc .page-footer ul li { |
||||
list-style: none; |
||||
text-align: left; |
||||
line-height: 25px; |
||||
} |
||||
|
||||
.sonata-bc .page-footer p.handcraft { |
||||
margin-top: 80px; |
||||
} |
||||
|
||||
.sonata-bc .page-header .col-sm-4, .sonata-bc .welcome { |
||||
padding-left: 0px; |
||||
} |
||||
|
||||
.sonata-bc .nivoGallery ul img { |
||||
max-height: none; |
||||
} |
||||
|
||||
.sonata_breadcrumb .breadcrumb>li+li:before { |
||||
content: "\00BB"; |
||||
} |
||||
|
||||
form div.alert ~ .form-actions { |
||||
min-height: 54px; |
||||
} |
||||
|
||||
form .form-actions { |
||||
min-height: 48px; |
||||
} |
||||
|
||||
/* |
||||
* Basket |
||||
*/ |
||||
table.basket thead tr { |
||||
background-color: #428bca; |
||||
color: #ffffff; |
||||
} |
||||
|
||||
table.basket thead tr th { |
||||
text-align: center; |
||||
} |
||||
|
||||
table.basket .unavailable .help-inline { |
||||
color: #b94a48; |
||||
font-weight: bold; |
||||
vertical-align: inherit; |
||||
} |
||||
|
||||
.checkbox input[type="checkbox"] { |
||||
float: none; |
||||
} |
||||
|
||||
.sonata-bc .demonstration-bar { |
||||
position: static; |
||||
width: 100%; |
||||
z-index: 999; |
||||
background-color: #000000; |
||||
color: #ffffff; |
||||
opacity: 0.8; |
||||
min-height: 30px; |
||||
padding-top: 5px; |
||||
text-align: center; |
||||
font-size: 1em; |
||||
} |
||||
|
||||
.sonata-bc #add_basket_modal { |
||||
top: 15%; |
||||
} |
||||
|
||||
/* |
||||
* Product catalog |
||||
*/ |
||||
.sonata-product-navigation-bar { |
||||
margin-bottom: 30px; |
||||
} |
||||
.sonata-product-navigation-bar .pagination { |
||||
margin: 0 !important; |
||||
} |
||||
.no-products-available { |
||||
padding: 100px; |
||||
font-weight: bold; |
||||
text-align: center; |
||||
} |
||||
|
||||
/* |
||||
* Product catalog menu |
||||
*/ |
||||
div.col-sm-3 div.list-group a.lead.list-group-item:first-child { |
||||
margin-top: 0px; |
||||
} |
||||
|
||||
div.col-sm-3 div.list-group a.lead.list-group-item { |
||||
margin-top: 20px; |
||||
} |
||||
|
||||
div.col-sm-3 div.list-group a:not(.lead).list-group-item, |
||||
div.col-sm-3 div.list-group div.menu_level_1, |
||||
div.col-sm-3 div.list-group div.menu_level_2, |
||||
div.col-sm-3 div.list-group div.menu_level_3, |
||||
div.col-sm-3 div.list-group div.menu_level_4 { |
||||
width: 96%; |
||||
margin-left: 4%; |
||||
} |
||||
|
||||
/* |
||||
* Product grid |
||||
*/ |
||||
.product-grid { |
||||
padding: 10px 0px 10px 0px; |
||||
} |
||||
.product-grid .thumbnail { |
||||
margin-bottom: 20px; |
||||
} |
||||
.product-grid .product-thumbnail { |
||||
min-height: 100px; |
||||
max-height: 100px; |
||||
text-align: center; |
||||
} |
||||
.product-grid .col-sm-3 { |
||||
min-height: 175px; |
||||
padding-right: 15px; |
||||
padding-left: 15px; |
||||
} |
||||
.product-grid .col-sm-3 .panel .panel-body, |
||||
.product-grid .col-sm-4 .panel .panel-body { |
||||
padding: 0px; |
||||
} |
||||
.product-grid .col-sm-3 .panel .panel-body img.img-responsive, |
||||
.product-grid .col-sm-4 .panel .panel-body img.img-responsive { |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
|
||||
/* Small resolution */ |
||||
@media(max-width:767px) { |
||||
.product-grid .col-sm-3 { |
||||
margin-top: 30px; |
||||
min-width: 250px; |
||||
} |
||||
.product-grid li:not(:last-child) { |
||||
margin-top: 0px; |
||||
} |
||||
} |
||||
|
||||
/* Extra-small resolution */ |
||||
@media(max-width:475px) { |
||||
.product-grid li:not(:last-child) { |
||||
margin-top: 25px; |
||||
} |
||||
|
||||
.product-grid li:first-child { |
||||
margin-top: 0px; |
||||
} |
||||
} |
||||
|
||||
.product-grid .col-sm-3:first-line { |
||||
margin-top: 10px; |
||||
} |
||||
|
||||
/* |
||||
* Product slider thumbnails |
||||
*/ |
||||
|
||||
div#slider-thumbs ul.list-inline { |
||||
width: 620px; |
||||
} |
||||
|
||||
div#slider-thumbs ul li { |
||||
padding-left: 0px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
/* |
||||
* News |
||||
*/ |
||||
h2.sonata-blog-post-title { |
||||
font-size: 22px; |
||||
} |
||||
|
||||
.sonata-blog-post-abtract { |
||||
margin-top: 10px; |
||||
} |
||||
|
||||
.sonata-blog-post-list hr { |
||||
margin: 20px 0px 5px 0px; |
||||
} |
||||
|
||||
/* |
||||
* Comments |
||||
*/ |
||||
|
||||
.fos_comment_comment_show { |
||||
border-top: 1px solid #ccc; |
||||
} |
@ -0,0 +1,137 @@ |
||||
/* |
||||
Copyright (c) 2010, Yahoo! Inc. All rights reserved. |
||||
Code licensed under the BSD License: |
||||
http://developer.yahoo.com/yui/license.html |
||||
version: 3.1.2 |
||||
build: 56 |
||||
*/ |
||||
.sf-reset div,.sf-reset dl,.sf-reset dt,.sf-reset dd,.sf-reset ul,.sf-reset ol,.sf-reset li,.sf-reset h1,.sf-reset h2,.sf-reset h3,.sf-reset h4,.sf-reset h5,.sf-reset h6,.sf-reset pre,.sf-reset code,.sf-reset form,.sf-reset fieldset,.sf-reset legend,.sf-reset input,.sf-reset textarea,.sf-reset p,.sf-reset blockquote,.sf-reset th,.sf-reset td{margin:0;padding:0;}.sf-reset table{border-collapse:collapse;border-spacing:0;}.sf-reset fieldset,.sf-reset img{border:0;}.sf-reset address,.sf-reset caption,.sf-reset cite,.sf-reset code,.sf-reset dfn,.sf-reset em,.sf-reset strong,.sf-reset th,.sf-reset var{font-style:normal;font-weight:normal;}.sf-reset li{list-style:none;}.sf-reset caption,.sf-reset th{text-align:left;}.sf-reset h1,.sf-reset h2,.sf-reset h3,.sf-reset h4,.sf-reset h5,.sf-reset h6{font-size:100%;font-weight:normal;}.sf-reset q:before,.sf-reset q:after{content:'';}.sf-reset abbr,.sf-reset acronym{border:0;font-variant:normal;}.sf-reset sup{vertical-align:text-top;}.sf-reset sub{vertical-align:text-bottom;}.sf-reset input,.sf-reset textarea,.sf-reset select{font-family:inherit;font-size:inherit;font-weight:inherit;}.sf-reset input,.sf-reset textarea,.sf-reset select{font-size:100%;}.sf-reset legend{color:#000;} |
||||
.sf-reset abbr { |
||||
border-bottom: 1px dotted #000; |
||||
cursor: help; |
||||
} |
||||
.sf-reset p { |
||||
font-size: 14px; |
||||
line-height: 20px; |
||||
padding-bottom: 20px; |
||||
} |
||||
.sf-reset strong { |
||||
color: #313131; |
||||
font-weight: bold; |
||||
} |
||||
.sf-reset a { |
||||
color: #6c6159; |
||||
} |
||||
.sf-reset a img { |
||||
border: none; |
||||
} |
||||
.sf-reset a:hover { |
||||
text-decoration: underline; |
||||
} |
||||
.sf-reset em { |
||||
font-style: italic; |
||||
} |
||||
.sf-reset h2, |
||||
.sf-reset h3 { |
||||
font-weight: bold; |
||||
} |
||||
.sf-reset h1 { |
||||
font-family: Georgia, "Times New Roman", Times, serif; |
||||
font-size: 20px; |
||||
color: #313131; |
||||
word-break: break-all; |
||||
} |
||||
.sf-reset li { |
||||
padding-bottom: 10px; |
||||
} |
||||
.sf-reset .block { |
||||
-moz-border-radius: 16px; |
||||
-webkit-border-radius: 16px; |
||||
border-radius: 16px; |
||||
margin-bottom: 20px; |
||||
background-color: #FFFFFF; |
||||
border: 1px solid #dfdfdf; |
||||
padding: 40px 50px; |
||||
} |
||||
.sf-reset h2 { |
||||
font-size: 16px; |
||||
font-family: Arial, Helvetica, sans-serif; |
||||
} |
||||
.sf-reset li a { |
||||
background: none; |
||||
color: #868686; |
||||
text-decoration: none; |
||||
} |
||||
.sf-reset li a:hover { |
||||
background: none; |
||||
color: #313131; |
||||
text-decoration: underline; |
||||
} |
||||
.sf-reset ol { |
||||
padding: 10px 0; |
||||
} |
||||
.sf-reset ol li { |
||||
list-style: decimal; |
||||
margin-left: 20px; |
||||
padding: 2px; |
||||
padding-bottom: 20px; |
||||
} |
||||
.sf-reset ol ol li { |
||||
list-style-position: inside; |
||||
margin-left: 0; |
||||
white-space: nowrap; |
||||
font-size: 12px; |
||||
padding-bottom: 0; |
||||
} |
||||
.sf-reset li .selected { |
||||
background-color: #ffd; |
||||
} |
||||
.sf-button { |
||||
display: -moz-inline-box; |
||||
display: inline-block; |
||||
text-align: center; |
||||
vertical-align: middle; |
||||
border: 0; |
||||
background: transparent none; |
||||
text-transform: uppercase; |
||||
cursor: pointer; |
||||
font: bold 11px Arial, Helvetica, sans-serif; |
||||
} |
||||
.sf-button span { |
||||
text-decoration: none; |
||||
display: block; |
||||
height: 28px; |
||||
float: left; |
||||
} |
||||
.sf-button .border-l { |
||||
text-decoration: none; |
||||
display: block; |
||||
height: 28px; |
||||
float: left; |
||||
padding: 0 0 0 7px; |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQtJREFUeNpiPHnyJAMakARiByDWYEGT8ADiYGVlZStubm5xlv///4MEQYoKZGRkQkRERLRYWVl5wYJQyXBZWdkwCQkJUxAHKgaWlAHSLqKiosb//v1DsYMFKGCvoqJiDmQzwXTAJYECulxcXNLoumCSoszMzDzoumDGghQwYZUECWIzkrAkSIIGOmlkLI10AiX//P379x8jIyMTNmPf/v79+ysLCwsvuiQoNi5//fr1Kch4dAyS3P/gwYMTQBP+wxwHw0xA4gkQ73v9+vUZdJ2w1Lf82bNn4iCHCQoKasHsZw4ODgbRIL8c+/Lly5M3b978Y2dn5wC6npkFLXnsAOKLjx49AmUHLYAAAwBoQubG016R5wAAAABJRU5ErkJggg==) no-repeat top left; |
||||
} |
||||
.sf-button .border-r { |
||||
padding: 0 7px 0 0; |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR1JREFUeNpiPHnyZCMDA8MNID5gZmb2nAEJMH7//v3N169fX969e/cYkL8WqGAHXPLv37//QYzfv39/fvPmzbUnT56sAXInmJub/2H5/x8sx8DCwsIrISFhDmQyPX78+CmQXs70798/BmQsKipqBNTgdvz4cWkmkE5kDATMioqKZkCFdiwg1eiAi4tLGqhQF24nMmBmZuYEigth1QkEbEBxTlySYPvJkwSJ00AnjYylgU6gxB8g/oFVEphkvgLF32KNMmCCewYUv4qhEyj47+HDhyeBzIMYOoEp8CxQw56wsLAncJ1//vz5/P79+2svX74EJc2V4BT58+fPd8CE/QKYHMGJOiIiAp6oWW7evDkNSF8DZYfIyEiU7AAQYACJ2vxVdJW4eQAAAABJRU5ErkJggg==) right top no-repeat; |
||||
} |
||||
.sf-button .btn-bg { |
||||
padding: 0px 14px; |
||||
color: #636363; |
||||
line-height: 28px; |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAcCAYAAACgXdXMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpiPnny5EKGf//+/Wf6//8/A4QAcrGzKCZwGc9sa2urBBBgAIbDUoYVp9lmAAAAAElFTkSuQmCC) repeat-x top left; |
||||
} |
||||
.sf-button:hover .border-l, |
||||
.sf-button-selected .border-l { |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR9JREFUeNpi/P//PwMyOHfunDqQSgNiexZkibNnzxYBqZa3HOs5v7PcYQBLnjlzhg1IbfzIdsTjA/t+ht9Mr8GKwZL//v3r+sB+0OMN+zqIEf8gFMvJkyd1gXTOa9YNDP//otrPAtSV/Jp9HfPff78Z0AEL0LUeXxivMfxD0wXTqfjj/2ugkf+wSrL9/YtpJEyS4S8WI5Ek/+GR/POPFjr//cenE6/kP9q4Fo/kr39/mdj+M/zFkGQCSj5i+ccPjLJ/GBgkuYOHQR1sNDpmAkb2LBmWwL///zKCIxwZM0VHR18G6p4uxeLLAA4tJMwEshiou1iMxXaHLGswA+t/YbhORuQUv2DBAnCifvxzI+enP3dQJUFg/vz5sOzgBBBgAPxX9j0YnH4JAAAAAElFTkSuQmCC) no-repeat top left; |
||||
} |
||||
.sf-button:hover .border-r, |
||||
.sf-button-selected .border-r { |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAT5JREFUeNpiPHv27BkGBoaDQDzLyMjoJgMSYHrM3WX8hn1d0f///88DFRYhSzIuv2X5H8Rg/SfKIPDTkYH/l80OINffxMTkF9O/f/8ZQPgnwyuGl+wrGd6x7vf49+9fO9jYf3+Bkkj4NesmBqAV+SdPntQC6vzHgIz//gOawbqOGchOxtAJwp8Zr4F0e7D8/fuPAR38/P8eZIo0yz8skv8YvoIk+YE6/zNgAyD7sRqLkPzzjxY6/+HS+R+fTkZ8djLh08lCUCcuSWawJGbwMTGwg7zyBatX2Bj5QZKPsBrLzaICktzN8g/NWEYGZgYZjoC/wMiei5FMpFh8QPSU6Ojoy3Cd7EwiDBJsDgxiLNY7gLrKQGIsHAxSDHxAO2TZ/b8D+TVxcXF9MCtYtLiKLgDpfUDVsxITE1GyA0CAAQA2E/N8VuHyAAAAAABJRU5ErkJggg==) right top no-repeat; |
||||
} |
||||
.sf-button:hover .btn-bg, |
||||
.sf-button-selected .btn-bg { |
||||
color: #FFFFFF; |
||||
text-shadow:0 1px 1px #6b9311; |
||||
background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAcCAIAAAAvP0KbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEFJREFUeNpiPnv2LNMdvlymf///M/37B8R/QfQ/MP33L4j+B6Qh7L9//sHpf2h8MA1V+w/KRjYLaDaLCU8vQIABAFO3TxZriO4yAAAAAElFTkSuQmCC) repeat-x top left; |
||||
} |
@ -0,0 +1,113 @@ |
||||
.sf-reset .traces { |
||||
padding-bottom: 14px; |
||||
} |
||||
.sf-reset .traces li { |
||||
font-size: 12px; |
||||
color: #868686; |
||||
padding: 5px 4px; |
||||
list-style-type: decimal; |
||||
margin-left: 20px; |
||||
white-space: break-word; |
||||
} |
||||
.sf-reset #logs .traces li.error { |
||||
font-style: normal; |
||||
color: #AA3333; |
||||
background: #f9ecec; |
||||
} |
||||
.sf-reset #logs .traces li.warning { |
||||
font-style: normal; |
||||
background: #ffcc00; |
||||
} |
||||
/* fix for Opera not liking empty <li> */ |
||||
.sf-reset .traces li:after { |
||||
content: "\00A0"; |
||||
} |
||||
.sf-reset .trace { |
||||
border: 1px solid #D3D3D3; |
||||
padding: 10px; |
||||
overflow: auto; |
||||
margin: 10px 0 20px; |
||||
} |
||||
.sf-reset .block-exception { |
||||
-moz-border-radius: 16px; |
||||
-webkit-border-radius: 16px; |
||||
border-radius: 16px; |
||||
margin-bottom: 20px; |
||||
background-color: #f6f6f6; |
||||
border: 1px solid #dfdfdf; |
||||
padding: 30px 28px; |
||||
word-wrap: break-word; |
||||
overflow: hidden; |
||||
} |
||||
.sf-reset .block-exception div { |
||||
color: #313131; |
||||
font-size: 10px; |
||||
} |
||||
.sf-reset .block-exception-detected .illustration-exception, |
||||
.sf-reset .block-exception-detected .text-exception { |
||||
float: left; |
||||
} |
||||
.sf-reset .block-exception-detected .illustration-exception { |
||||
width: 152px; |
||||
} |
||||
.sf-reset .block-exception-detected .text-exception { |
||||
width: 670px; |
||||
padding: 30px 44px 24px 46px; |
||||
position: relative; |
||||
} |
||||
.sf-reset .text-exception .open-quote, |
||||
.sf-reset .text-exception .close-quote { |
||||
position: absolute; |
||||
} |
||||
.sf-reset .open-quote { |
||||
top: 0; |
||||
left: 0; |
||||
} |
||||
.sf-reset .close-quote { |
||||
bottom: 0; |
||||
right: 50px; |
||||
} |
||||
.sf-reset .block-exception p { |
||||
font-family: Arial, Helvetica, sans-serif; |
||||
} |
||||
.sf-reset .block-exception p a, |
||||
.sf-reset .block-exception p a:hover { |
||||
color: #565656; |
||||
} |
||||
.sf-reset .logs h2 { |
||||
float: left; |
||||
width: 654px; |
||||
} |
||||
.sf-reset .error-count { |
||||
float: right; |
||||
width: 170px; |
||||
text-align: right; |
||||
} |
||||
.sf-reset .error-count span { |
||||
display: inline-block; |
||||
background-color: #aacd4e; |
||||
-moz-border-radius: 6px; |
||||
-webkit-border-radius: 6px; |
||||
border-radius: 6px; |
||||
padding: 4px; |
||||
color: white; |
||||
margin-right: 2px; |
||||
font-size: 11px; |
||||
font-weight: bold; |
||||
} |
||||
.sf-reset .toggle { |
||||
vertical-align: middle; |
||||
} |
||||
.sf-reset .linked ul, |
||||
.sf-reset .linked li { |
||||
display: inline; |
||||
} |
||||
.sf-reset #output-content { |
||||
color: #000; |
||||
font-size: 12px; |
||||
} |
||||
.sf-reset #traces-text pre { |
||||
white-space: pre; |
||||
font-size: 12px; |
||||
font-family: monospace; |
||||
} |
@ -0,0 +1,68 @@ |
||||
html { |
||||
background: #eee; |
||||
} |
||||
body { |
||||
font: 11px Verdana, Arial, sans-serif; |
||||
color: #333; |
||||
} |
||||
.sf-reset, .sf-reset .block, .sf-reset #message { |
||||
margin: auto; |
||||
} |
||||
img { |
||||
border: 0; |
||||
} |
||||
.clear { |
||||
clear: both; |
||||
height: 0; |
||||
font-size: 0; |
||||
line-height: 0; |
||||
} |
||||
.clear-fix:after { |
||||
content: "\0020"; |
||||
display: block; |
||||
height: 0; |
||||
clear: both; |
||||
visibility: hidden; |
||||
} |
||||
.clear-fix { |
||||
display: inline-block; |
||||
} |
||||
* html .clear-fix { |
||||
height: 1%; |
||||
} |
||||
.clear-fix { |
||||
display: block; |
||||
} |
||||
.header { |
||||
padding: 30px 30px 20px 30px; |
||||
} |
||||
.header-logo { |
||||
float: left; |
||||
} |
||||
.search { |
||||
float: right; |
||||
padding-top: 20px; |
||||
} |
||||
.search label { |
||||
line-height: 28px; |
||||
vertical-align: middle; |
||||
} |
||||
.search input { |
||||
width: 195px; |
||||
font-size: 12px; |
||||
border: 1px solid #dadada; |
||||
background: #fff url(data:image/gif;base64,R0lGODlhAQAFAKIAAPX19e/v7/39/fr6+urq6gAAAAAAAAAAACH5BAAAAAAALAAAAAABAAUAAAMESAEjCQA7) repeat-x left top; |
||||
padding: 5px 6px; |
||||
color: #565656; |
||||
} |
||||
.search input[type="search"] { |
||||
-webkit-appearance: textfield; |
||||
} |
||||
#content { |
||||
width: 970px; |
||||
margin: 0 auto; |
||||
} |
||||
pre { |
||||
white-space: normal; |
||||
font-family: Arial, Helvetica, sans-serif; |
||||
} |
After Width: | Height: | Size: 197 B |
After Width: | Height: | Size: 213 B |
After Width: | Height: | Size: 393 B |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,612 @@ |
||||
CKEditor 4 Changelog |
||||
==================== |
||||
|
||||
## CKEditor 4.4.3 |
||||
|
||||
**Security Updates:** |
||||
|
||||
* Fixed XSS vulnerability in the Preview plugin reported by Mario Heiderich of [Cure53](https://cure53.de/). |
||||
|
||||
**An upgrade is highly recommended!** |
||||
|
||||
New Features: |
||||
|
||||
* [#12164](http://dev.ckeditor.com/ticket/12164): Added the "Justify" option to the "Horizontal Alignment" drop-down in the Table Cell Properties dialog window. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#12110](http://dev.ckeditor.com/ticket/12110): Fixed: Editor crash after deleting a table. Thanks to [Alin Purcaru](https://github.com/mesmerizero)! |
||||
* [#11897](http://dev.ckeditor.com/ticket/11897): Fixed: **Enter** key used in an empty list item creates a new line instead of breaking the list. Thanks to [noam-si](https://github.com/noam-si)! |
||||
* [#12140](http://dev.ckeditor.com/ticket/12140): Fixed: Double-clicking linked widgets opens two dialog windows. |
||||
* [#12132](http://dev.ckeditor.com/ticket/12132): Fixed: Image is inserted with `width` and `height` styles even when they are not allowed. |
||||
* [#9317](http://dev.ckeditor.com/ticket/9317): [IE] Fixed: [`config.disableObjectResizing`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableObjectResizing) does not work on IE. **Note**: We were not able to fix this issue on IE11+ because necessary events stopped working. See a [last resort workaround](http://dev.ckeditor.com/ticket/9317#comment:16) and make sure to [support our complaint to Microsoft](https://connect.microsoft.com/IE/feedback/details/742593/please-respect-execcommand-enableobjectresizing-in-contenteditable-elements). |
||||
* [#9638](http://dev.ckeditor.com/ticket/9638): Fixed: There should be no information about accessibility help available under the *Alt+0* keyboard shortcut if the [Accessibility Help](http://ckeditor.com/addon/a11yhelp) plugin is not available. |
||||
* [#8117](http://dev.ckeditor.com/ticket/8117) and [#9186](http://dev.ckeditor.com/ticket/9186): Fixed: In HTML5 `<meta>` tags should be allowed everywhere, including inside the `<body>` element. |
||||
* [#10422](http://dev.ckeditor.com/ticket/10422): Fixed: [`config.fillEmptyBlocks`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-fillEmptyBlocks) not working properly if a function is specified. |
||||
|
||||
## CKEditor 4.4.2 |
||||
|
||||
Important Notes: |
||||
|
||||
* The CKEditor testing environment is now publicly available. Read more about how to set up the environment and execute tests in the [CKEditor Testing Environment](http://docs.ckeditor.com/#!/guide/dev_tests) guide. |
||||
Please note that the [`tests/`](https://github.com/ckeditor/ckeditor-dev/tree/master/tests) directory which contains editor tests is not available in release packages. It can only be found in the development version of CKEditor on [GitHub](https://github.com/ckeditor/ckeditor-dev/). |
||||
|
||||
New Features: |
||||
|
||||
* [#11909](http://dev.ckeditor.com/ticket/11909): Introduced a parameter to prevent the [`editor.setData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setData) method from recording undo snapshots. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11757](http://dev.ckeditor.com/ticket/11757): Fixed: Imperfections in the [Moono](http://ckeditor.com/addon/moono) skin. Thanks to [danyaPostfactum](https://github.com/danyaPostfactum)! |
||||
* [#10091](http://dev.ckeditor.com/ticket/10091): Blockquote should be treated like an object by the styles system. Thanks to [dan-james-deeson](https://github.com/dan-james-deeson)! |
||||
* [#11478](http://dev.ckeditor.com/ticket/11478): Fixed: Issue with passing jQuery objects to [adapter](http://docs.ckeditor.com/#!/guide/dev_jquery) configuration. |
||||
* [#10867](http://dev.ckeditor.com/ticket/10867): Fixed: Issue with setting encoded URI as image link. |
||||
* [#11983](http://dev.ckeditor.com/ticket/11983): Fixed: Clicking a nested widget does not focus it. Additionally, performance of the [`widget.repository.getByElement()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-getByElement) method was improved. |
||||
* [#12000](http://dev.ckeditor.com/ticket/12000): Fixed: Nested widgets should be initialized on [`editor.setData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setData) and [`nestedEditable.setData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.nestedEditable-method-setData). |
||||
* [#12022](http://dev.ckeditor.com/ticket/12022): Fixed: Outer widget's drag handler is not created at all if it has any nested widgets inside. |
||||
* [#11960](http://dev.ckeditor.com/ticket/11960): [Blink/WebKit] Fixed: The caret should be scrolled into view on *Backspace* and *Delete* (covers only the merging blocks case). |
||||
* [#11306](http://dev.ckeditor.com/ticket/11306): [OSX][Blink/WebKit] Fixed: No widget entries in the context menu on widget right-click. |
||||
* [#11957](http://dev.ckeditor.com/ticket/11957): Fixed: Alignment labels in the [Enhanced Image](http://ckeditor.com/addon/image2) dialog window are not translated. |
||||
* [#11980](http://dev.ckeditor.com/ticket/11980): [Blink/WebKit] Fixed: `<span>` elements created when joining adjacent elements (non-collapsed selection). |
||||
* [#12009](http://dev.ckeditor.com/ticket/12009): [Nested widgets] Integration with the [Magic Line](http://ckeditor.com/addon/magicline) plugin. |
||||
* [#11387](http://dev.ckeditor.com/ticket/11387): Fixed: `role="radiogroup"` should be applied only to radio inputs' container. |
||||
* [#7975](http://dev.ckeditor.com/ticket/7975): [IE8] Fixed: Errors when trying to select an empty table cell. |
||||
* [#11947](http://dev.ckeditor.com/ticket/11947): [Firefox+IE11] Fixed: *Shift+Enter* in lists produces two line breaks. |
||||
* [#11972](http://dev.ckeditor.com/ticket/11972): Fixed: Feature detection in the [`element.setText()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-setText) method should not trigger the layout engine. |
||||
* [#7634](http://dev.ckeditor.com/ticket/7634): Fixed: The [Flash Dialog](http://ckeditor.com/addon/flash) plugin omits the `allowFullScreen` parameter in the editor data if set to `true`. |
||||
* [#11910](http://dev.ckeditor.com/ticket/11910): Fixed: [Enhanced Image](http://ckeditor.com/addon/image2) does not take [`config.baseHref`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-baseHref) into account when updating image dimensions. |
||||
* [#11753](http://dev.ckeditor.com/ticket/11753): Fixed: Wrong [`checkDirty()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-checkDirty) method value after focusing or blurring a widget. |
||||
* [#11830](http://dev.ckeditor.com/ticket/11830): Fixed: Impossible to pass some arguments to [CKBuilder](https://github.com/ckeditor/ckbuilder) when using the `/dev/builder/build.sh` script. |
||||
* [#11945](http://dev.ckeditor.com/ticket/11945): Fixed: [Form Elements](http://ckeditor.com/addon/forms) plugin should not change a core method. |
||||
* [#11384](http://dev.ckeditor.com/ticket/11384): [IE9+] Fixed: `IndexSizeError` thrown when pasting into a non-empty selection anchored in one text node. |
||||
|
||||
## CKEditor 4.4.1 |
||||
|
||||
New Features: |
||||
|
||||
* [#9661](http://dev.ckeditor.com/ticket/9661): Added the option to [configure](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-linkJavaScriptLinksAllowed) anchor tags with JavaScript code in the `href` attribute. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11861](http://dev.ckeditor.com/ticket/11861): [Webkit/Blink] Fixed: Span elements created while joining adjacent elements. **Note:** This patch only covers cases when *Backspace* or *Delete* is pressed on a collapsed (empty) selection. The remaining case, with a non-empty selection, will be fixed in the next release. |
||||
* [#10714](http://dev.ckeditor.com/ticket/10714): [iOS] Fixed: Selection and drop-downs are broken if a touch event listener is used due to a [Webkit bug](https://bugs.webkit.org/show_bug.cgi?id=128924). Thanks to [Arty Gus](https://github.com/artygus)! |
||||
* [#11911](http://dev.ckeditor.com/ticket/11911): Fixed setting the `dir` attribute for a preloaded language in [CKEDITOR.lang](http://docs.ckeditor.com/#!/api/CKEDITOR.lang). Thanks to [Akash Mohapatra](https://github.com/akashmohapatra)! |
||||
* [#11926](http://dev.ckeditor.com/ticket/11926): Fixed: [Code Snippet](http://ckeditor.com/addon/codesnippet) does not decode HTML entities when loading code from the `<code>` element. |
||||
* [#11223](http://dev.ckeditor.com/ticket/11223): Fixed: Issue when [Protected Source](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-protectedSource) was not working in the `<title>` element. |
||||
* [#11859](http://dev.ckeditor.com/ticket/11859): Fixed: Removed the [Source Dialog](http://ckeditor.com/addon/sourcedialog) plugin dependency from the [Code Snippet](http://ckeditor.com/addon/codesnippet) sample. |
||||
* [#11754](http://dev.ckeditor.com/ticket/11754): [Chrome] Fixed: Infinite loop when content includes not closed attributes. |
||||
* [#11848](http://dev.ckeditor.com/ticket/11848): [IE] Fixed: [`editor.insertElement()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertElement) throwing an exception when there was no selection in the editor. |
||||
* [#11801](http://dev.ckeditor.com/ticket/11801): Fixed: Editor anchors unavailable when linking the [Enhanced Image](http://ckeditor.com/addon/image2) widget. |
||||
* [#11626](http://dev.ckeditor.com/ticket/11626): Fixed: [Table Resize](http://ckeditor.com/addon/tableresize) sets invalid column width. |
||||
* [#11872](http://dev.ckeditor.com/ticket/11872): Made [`element.addClass()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-addClass) chainable symmetrically to [`element.removeClass()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-removeClass). |
||||
* [#11813](http://dev.ckeditor.com/ticket/11813): Fixed: Link lost while pasting a captioned image and restoring an undo snapshot ([Enhanced Image](http://ckeditor.com/addon/image2)). |
||||
* [#11814](http://dev.ckeditor.com/ticket/11814): Fixed: _Link_ and _Unlink_ entries persistently displayed in the [Enhanced Image](http://ckeditor.com/addon/image2) context menu. |
||||
* [#11839](http://dev.ckeditor.com/ticket/11839): [IE9] Fixed: The caret jumps out of the editable area when resizing the editor in the source mode. |
||||
* [#11822](http://dev.ckeditor.com/ticket/11822): [Webkit] Fixed: Editing anchors by double-click is broken in some cases. |
||||
* [#11823](http://dev.ckeditor.com/ticket/11823): [IE8] Fixed: [Table Resize](http://ckeditor.com/addon/tableresize) throws an error over scrollbar. |
||||
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: It is not possible to change the language back to _Not set_ in the [Code Snippet](http://ckeditor.com/addon/codesnippet) dialog window. |
||||
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: [Filter](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter) rules are not applied inside elements with the `contenteditable` attribute set to `true`. |
||||
* [#11798](http://dev.ckeditor.com/ticket/11798): Fixed: Inserting a non-editable element inside a table cell breaks the table. |
||||
* [#11793](http://dev.ckeditor.com/ticket/11793): Fixed: Drop-down is not "on" when clicking it while the editor is blurred. |
||||
* [#11850](http://dev.ckeditor.com/ticket/11850): Fixed: Fake objects with the `contenteditable` attribute set to `false` are not downcasted properly. |
||||
* [#11811](http://dev.ckeditor.com/ticket/11811): Fixed: Widget's data is not encoded correctly when passed to an attribute. |
||||
* [#11777](http://dev.ckeditor.com/ticket/11777): Fixed encoding ampersand in the [Mathematical Formulas](http://ckeditor.com/addon/mathjax) plugin. |
||||
* [#11880](http://dev.ckeditor.com/ticket/11880): [IE8-9] Fixed: Linked image has a default thick border. |
||||
|
||||
Other Changes: |
||||
|
||||
* [#11807](http://dev.ckeditor.com/ticket/11807): Updated jQuery version used in the sample to 1.11.0 and tested CKEditor jQuery Adapter with version 1.11.0 and 2.1.0. |
||||
* [#9504](http://dev.ckeditor.com/ticket/9504): Stopped using deprecated `attribute.specified` in all browsers except Internet Explorer. |
||||
* [#11809](http://dev.ckeditor.com/ticket/11809): Changed tab size in `<pre>` to 4 spaces. |
||||
|
||||
## CKEditor 4.4 |
||||
|
||||
**Important Notes:** |
||||
|
||||
* Marked the [`editor.beforePaste`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-beforePaste) event as deprecated. |
||||
* The default class of captioned images has changed to `image` (was: `caption`). Please note that once edited in CKEditor 4.4+, all existing images of the `caption` class (`<figure class="caption">`) will be [filtered out](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) unless the [`config.image2_captionedClass`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-image2_captionedClass) option is set to `caption`. For backward compatibility (i.e. when upgrading), it is highly recommended to use this setting, which also helps prevent CSS conflicts, etc. This does not apply to new CKEditor integrations. |
||||
* Widgets without defined buttons are no longer registered automatically to the [Advanced Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter). Before CKEditor 4.4 widgets were registered to the ACF which was an incorrect behavior ([#11567](http://dev.ckeditor.com/ticket/11567)). This change should not have any impact on standard scenarios, but if your button does not execute the widget command, you need to set [`allowedContent`](http://docs.ckeditor.com/#!/api/CKEDITOR.feature-property-allowedContent) and [`requiredContent`](http://docs.ckeditor.com/#!/api/CKEDITOR.feature-property-requiredContent) properties for it manually, because the editor will not be able to find them. |
||||
* The [Show Borders](http://ckeditor.com/addon/showborders) plugin was added to the Standard installation package in order to ensure that unstyled tables are still visible for the user ([#11665](http://dev.ckeditor.com/ticket/11665)). |
||||
* Since CKEditor 4.4 the editor instance should be passed to [`CKEDITOR.style`](http://docs.ckeditor.com/#!/api/CKEDITOR.style) methods to ensure full compatibility with other features (e.g. applying styles to widgets requires that). We ensured backward compatibility though, so the [`CKEDITOR.style`](http://docs.ckeditor.com/#!/api/CKEDITOR.style) will work even when the editor instance is not provided. |
||||
|
||||
New Features: |
||||
|
||||
* [#11297](http://dev.ckeditor.com/ticket/11297): Styles can now be applied to widgets. The definition of a style which can be applied to a specific widget must contain two additional properties — `type` and `widget`. Read more in the [Widget Styles](http://docs.ckeditor.com/#!/guide/dev_styles-section-widget-styles) section of the "Syles Drop-down" guide. Note that by default, widgets support only classes and no other attributes or styles. Related changes and features: |
||||
* Introduced the [`CKEDITOR.style.addCustomHandler()`](http://docs.ckeditor.com/#!/api/CKEDITOR.style-static-method-addCustomHandler) method for registering custom style handlers. |
||||
* The [`CKEDITOR.style.apply()`](http://docs.ckeditor.com/#!/api/CKEDITOR.style-method-apply) and [`CKEDITOR.style.remove()`](http://docs.ckeditor.com/#!/api/CKEDITOR.style-method-remove) methods are now called with an editor instance instead of the document so they can be reused by the [`CKEDITOR.editor.applyStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-applyStyle) and [`CKEDITOR.editor.removeStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-removeStyle) methods. Backward compatibility was preserved, but from CKEditor 4.4 it is highly recommended to pass an editor instead of a document to these methods. |
||||
* Many new methods and properties were introduced in the [Widget API](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget) to make the handling of styles by widgets fully customizable. See: [`widget.definition.styleableElements`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.definition-property-styleableElements), [`widget.definition.styleToAllowedContentRule`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.definition-property-styleToAllowedContentRules), [`widget.addClass()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-addClass), [`widget.removeClass()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-removeClass), [`widget.getClasses()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-getClasses), [`widget.hasClass()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-hasClass), [`widget.applyStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-applyStyle), [`widget.removeStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-removeStyle), [`widget.checkStyleActive()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-method-checkStyleActive). |
||||
* Integration with the [Allowed Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) required an introduction of the [`CKEDITOR.style.toAllowedContent()`](http://docs.ckeditor.com/#!/api/CKEDITOR.style-method-toAllowedContentRules) method which can be implemented by the custom style handler and if exists, it is used by the [`CKEDITOR.filter`](http://docs.ckeditor.com/#!/api/CKEDITOR.filter) to translate a style to [allowed content rules](http://docs.ckeditor.com/#!/api/CKEDITOR.filter.allowedContentRules). |
||||
* [#11300](http://dev.ckeditor.com/ticket/11300): Various changes in the [Enhanced Image](http://ckeditor.com/addon/image2) plugin: |
||||
* Introduced the [`config.image2_captionedClass`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-image2_captionedClass) option to configure the class of captioned images. |
||||
* Introduced the [`config.image2_alignClasses`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-image2_alignClasses) option to configure the way images are aligned with CSS classes. |
||||
If this setting is defined, the editor produces classes instead of inline styles for aligned images. |
||||
* Default image caption can be translated (customized) with the `editor.lang.image2.captionPlaceholder` string. |
||||
* [#11341](http://dev.ckeditor.com/ticket/11341): [Enhanced Image](http://ckeditor.com/addon/image2) plugin: It is now possible to add a link to any image type. |
||||
* [#10202](http://dev.ckeditor.com/ticket/10202): Introduced wildcard support in the [Allowed Content Rules](http://docs.ckeditor.com/#!/guide/dev_allowed_content_rules) format. |
||||
* [#10276](http://dev.ckeditor.com/ticket/10276): Introduced blacklisting in the [Allowed Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter). |
||||
* [#10480](http://dev.ckeditor.com/ticket/10480): Introduced code snippets with code highlighting. There are two versions available so far — the default [Code Snippet](http://ckeditor.com/addon/codesnippet) which uses the [highlight.js](http://highlightjs.org) library and the [Code Snippet GeSHi](http://ckeditor.com/addon/codesnippetgeshi) which uses the [GeSHi](http://qbnz.com/highlighter/) library. |
||||
* [#11737](http://dev.ckeditor.com/ticket/11737): Introduced an option to prevent [filtering](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) of an element that matches custom criteria (see [`filter.addElementCallback()`](http://docs.ckeditor.com/#!/api/CKEDITOR.filter-method-addElementCallback)). |
||||
* [#11532](http://dev.ckeditor.com/ticket/11532): Introduced the [`editor.addContentsCss()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-addContentsCss) method that can be used for [adding custom CSS files](http://docs.ckeditor.com/#!/guide/plugin_sdk_styles). |
||||
* [#11536](http://dev.ckeditor.com/ticket/11536): Added the [`CKEDITOR.tools.htmlDecode()`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-htmlDecode) method for decoding HTML entities. |
||||
* [#11225](http://dev.ckeditor.com/ticket/11225): Introduced the [`CKEDITOR.tools.transparentImageData`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-property-transparentImageData) property which contains transparent image data to be used in CSS or as image source. |
||||
|
||||
Other Changes: |
||||
|
||||
* [#11377](http://dev.ckeditor.com/ticket/11377): Unified internal representation of empty anchors using the [fake objects](http://ckeditor.com/addon/fakeobjects). |
||||
* [#11422](http://dev.ckeditor.com/ticket/11422): Removed Firefox 3.x, Internet Explorer 6 and Opera 12.x leftovers in code. |
||||
* [#5217](http://dev.ckeditor.com/ticket/5217): Setting data (including switching between modes) creates a new undo snapshot. Besides that: |
||||
* Introduced the [`editable.status`](http://docs.ckeditor.com/#!/api/CKEDITOR.editable-property-status) property. |
||||
* Introduced a new `forceUpdate` option for the [`editor.lockSnapshot`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-lockSnapshot) event. |
||||
* Fixed: Selection not being unlocked in inline editor after setting data ([#11500](http://dev.ckeditor.com/ticket/11500)). |
||||
* The [WebSpellChecker](http://ckeditor.com/addon/wsc) plugin was updated to the latest version. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10190](http://dev.ckeditor.com/ticket/10190): Fixed: Removing block style with [`editor.removeStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-removeStyle) should result in a paragraph and not a div. |
||||
* [#11727](http://dev.ckeditor.com/ticket/11727): Fixed: The editor tries to select a non-editable image which was clicked. |
||||
|
||||
## CKEditor 4.3.5 |
||||
|
||||
New Features: |
||||
|
||||
* Added new translation: Tatar. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11677](http://dev.ckeditor.com/ticket/11677): Fixed: Undo/Redo keystrokes are blocked in the source mode. |
||||
* [#11717](http://dev.ckeditor.com/ticket/11717): [Document Properties](http://ckeditor.com/addon/docprops) plugin requires the [Color Dialog](http://ckeditor.com/addon/colordialog) plugin to work. |
||||
|
||||
## CKEditor 4.3.4 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11597](http://dev.ckeditor.com/ticket/11597): [IE11] Fixed: Error thrown when trying to open the [preview](http://ckeditor.com/addon/preview) using the keyboard. |
||||
* [#11544](http://dev.ckeditor.com/ticket/11544): [Placeholders](http://ckeditor.com/addon/placeholder) will no longer be upcasted in parents not accepting `<span>` elements. |
||||
* [#8663](http://dev.ckeditor.com/ticket/8663): Fixed [`element.renameNode()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-renameNode) not clearing the [`element.getName()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-getName) cache. |
||||
* [#11574](http://dev.ckeditor.com/ticket/11574): Fixed: *Backspace* destroying the DOM structure if an inline editable is placed in a list item. |
||||
* [#11603](http://dev.ckeditor.com/ticket/11603): Fixed: [Table Resize](http://ckeditor.com/addon/tableresize) attaches to tables outside the editable. |
||||
* [#9205](http://dev.ckeditor.com/ticket/9205), [#7805](http://dev.ckeditor.com/ticket/7805), [#8216](http://dev.ckeditor.com/ticket/8216): Fixed: `{cke_protected_1}` appearing in data in various cases where HTML comments are placed next to `"` or `'`. |
||||
* [#11635](http://dev.ckeditor.com/ticket/11635): Fixed: Some attributes are not protected before the content is passed through the fix bin. |
||||
* [#11660](http://dev.ckeditor.com/ticket/11660): [IE] Fixed: Table content is lost when some extra markup is inside the table. |
||||
* [#11641](http://dev.ckeditor.com/ticket/11641): Fixed: Switching between modes in the classic editor removes content styles for the inline editor. |
||||
* [#11568](http://dev.ckeditor.com/ticket/11568): Fixed: [Styles](http://ckeditor.com/addon/stylescombo) drop-down list is not enabled on selection change. |
||||
|
||||
## CKEditor 4.3.3 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11500](http://dev.ckeditor.com/ticket/11500): [Webkit/Blink] Fixed: Selection lost when setting data in another inline editor. Additionally, [`selection.removeAllRanges()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.selection-method-removeAllRanges) is now scoped to selection's [root](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.selection-property-root). |
||||
* [#11104](http://dev.ckeditor.com/ticket/11104): [IE] Fixed: Various issues with scrolling and selection when focusing widgets. |
||||
* [#11487](http://dev.ckeditor.com/ticket/11487): Moving mouse over the [Enhanced Image](http://ckeditor.com/addon/image2) widget will no longer change the value returned by the [`editor.checkDirty()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-checkDirty) method. |
||||
* [#8673](http://dev.ckeditor.com/ticket/8673): [WebKit] Fixed: Cannot select and remove the [Page Break](http://ckeditor.com/addon/pagebreak). |
||||
* [#11413](http://dev.ckeditor.com/ticket/11413): Fixed: Incorrect [`editor.execCommand()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-execCommand) behavior. |
||||
* [#11438](http://dev.ckeditor.com/ticket/11438): Splitting table cells vertically is no longer changing table structure. |
||||
* [#8899](http://dev.ckeditor.com/ticket/8899): Fixed: Links in the [About CKEditor](http://ckeditor.com/addon/about) dialog window now open in a new browser window or tab. |
||||
* [#11490](http://dev.ckeditor.com/ticket/11490): Fixed: [Menu button](http://ckeditor.com/addon/menubutton) panel not showing in the source mode. |
||||
* [#11417](http://dev.ckeditor.com/ticket/11417): The [`widget.doubleclick`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-event-doubleclick) event is not canceled anymore after editing was triggered. |
||||
* [#11253](http://dev.ckeditor.com/ticket/11253): [IE] Fixed: Clipped upload button in the [Enhanced Image](http://ckeditor.com/addon/image2) dialog window. |
||||
* [#11359](http://dev.ckeditor.com/ticket/11359): Standardized the way anchors are discovered by the [Link](http://ckeditor.com/addon/link) plugin. |
||||
* [#11058](http://dev.ckeditor.com/ticket/11058): [IE8] Fixed: Error when deleting a table row. |
||||
* [#11508](http://dev.ckeditor.com/ticket/11508): Fixed: [`htmlDataProcessor`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlDataProcessor) discovering protected attributes within other attributes' values. |
||||
* [#11533](http://dev.ckeditor.com/ticket/11533): Widgets: Avoid recurring upcasts if the DOM structure was modified during an upcast. |
||||
* [#11400](http://dev.ckeditor.com/ticket/11400): Fixed: The [`domObject.removeAllListeners()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.domObject-method-removeAllListeners) method does not remove custom listeners completely. |
||||
* [#11493](http://dev.ckeditor.com/ticket/11493): Fixed: The [`selection.getRanges()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.selection-method-getRanges) method does not override cached ranges when used with the `onlyEditables` argument. |
||||
* [#11390](http://dev.ckeditor.com/ticket/11390): [IE] All [XML](http://ckeditor.com/addon/xml) plugin [methods](http://docs.ckeditor.com/#!/api/CKEDITOR.xml) now work in IE10+. |
||||
* [#11542](http://dev.ckeditor.com/ticket/11542): [IE11] Fixed: Blurry toolbar icons when Right-to-Left UI language is set. |
||||
* [#11504](http://dev.ckeditor.com/ticket/11504): Fixed: When [`config.fullPage`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-fullPage) is set to `true`, entities are not encoded in editor output. |
||||
* [#11004](http://dev.ckeditor.com/ticket/11004): Integrated [Enhanced Image](http://ckeditor.com/addon/image2) dialog window with [Advanced Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter). |
||||
* [#11439](http://dev.ckeditor.com/ticket/11439): Fixed: Properties get cloned in the Cell Properties dialog window if multiple cells are selected. |
||||
|
||||
## CKEditor 4.3.2 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11331](http://dev.ckeditor.com/ticket/11331): A menu button will have a changed label when selected instead of using the `aria-pressed` attribute. |
||||
* [#11177](http://dev.ckeditor.com/ticket/11177): Widget drag handler improvements: |
||||
* [#11176](http://dev.ckeditor.com/ticket/11176): Fixed: Initial position is not updated when the widget data object is empty. |
||||
* [#11001](http://dev.ckeditor.com/ticket/11001): Fixed: Multiple synchronous layout recalculations are caused by initial drag handler positioning causing performance issues. |
||||
* [#11161](http://dev.ckeditor.com/ticket/11161): Fixed: Drag handler is not repositioned in various situations. |
||||
* [#11281](http://dev.ckeditor.com/ticket/11281): Fixed: Drag handler and mask are duplicated after widget reinitialization. |
||||
* [#11207](http://dev.ckeditor.com/ticket/11207): [Firefox] Fixed: Misplaced [Enhanced Image](http://ckeditor.com/addon/image2) resizer in the inline editor. |
||||
* [#11102](http://dev.ckeditor.com/ticket/11102): `CKEDITOR.template` improvements: |
||||
* [#11102](http://dev.ckeditor.com/ticket/11102): Added newline character support. |
||||
* [#11216](http://dev.ckeditor.com/ticket/11216): Added "\\'" substring support. |
||||
* [#11121](http://dev.ckeditor.com/ticket/11121): [Firefox] Fixed: High Contrast mode is enabled when the editor is loaded in a hidden iframe. |
||||
* [#11350](http://dev.ckeditor.com/ticket/11350): The default value of [`config.contentsCss`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-contentsCss) is affected by [`CKEDITOR.getUrl()`](http://docs.ckeditor.com/#!/api/CKEDITOR-method-getUrl). |
||||
* [#11097](http://dev.ckeditor.com/ticket/11097): Improved the [Autogrow](http://ckeditor.com/addon/autogrow) plugin performance when dealing with very big tables. |
||||
* [#11290](http://dev.ckeditor.com/ticket/11290): Removed redundant code in the [Source Dialog](http://ckeditor.com/addon/sourcedialog) plugin. |
||||
* [#11133](http://dev.ckeditor.com/ticket/11133): [Page Break](http://ckeditor.com/addon/pagebreak) becomes editable if pasted. |
||||
* [#11126](http://dev.ckeditor.com/ticket/11126): Fixed: Native Undo executed once the bottom of the snapshot stack is reached. |
||||
* [#11131](http://dev.ckeditor.com/ticket/11131): [Div Editing Area](http://ckeditor.com/addon/divarea): Fixed: Error thrown when switching to source mode if the selection was in widget's nested editable. |
||||
* [#11139](http://dev.ckeditor.com/ticket/11139): [Div Editing Area](http://ckeditor.com/addon/divarea): Fixed: Elements Path is not cleared after switching to source mode. |
||||
* [#10778](http://dev.ckeditor.com/ticket/10778): Fixed a bug with range enlargement. The range no longer expands to visible whitespace. |
||||
* [#11146](http://dev.ckeditor.com/ticket/11146): [IE] Fixed: Preview window switches Internet Explorer to Quirks Mode. |
||||
* [#10762](http://dev.ckeditor.com/ticket/10762): [IE] Fixed: JavaScript code displayed in preview window's URL bar. |
||||
* [#11186](http://dev.ckeditor.com/ticket/11186): Introduced the [`widgets.repository.addUpcastCallback()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-addUpcastCallback) method that allows to block upcasting given element to a widget. |
||||
* [#11307](http://dev.ckeditor.com/ticket/11307): Fixed: Paste as Plain Text conflict with the [MooTools](http://mootools.net) library. |
||||
* [#11140](http://dev.ckeditor.com/ticket/11140): [IE11] Fixed: Anchors are not draggable. |
||||
* [#11379](http://dev.ckeditor.com/ticket/11379): Changed default contents `line-height` to unitless values to avoid huge text overlapping (like in [#9696](http://dev.ckeditor.com/ticket/9696)). |
||||
* [#10787](http://dev.ckeditor.com/ticket/10787): [Firefox] Fixed: Broken replacement of text while pasting into `div`-based editor. |
||||
* [#10884](http://dev.ckeditor.com/ticket/10884): Widgets integration with the [Show Blocks](http://ckeditor.com/addon/showblocks) plugin. |
||||
* [#11021](http://dev.ckeditor.com/ticket/11021): Fixed: An error thrown when selecting entire editable contents while fake selection is on. |
||||
* [#11086](http://dev.ckeditor.com/ticket/11086): [IE8] Re-enable inline widgets drag&drop in Internet Explorer 8. |
||||
* [#11372](http://dev.ckeditor.com/ticket/11372): Widgets: Special characters encoded twice in nested editables. |
||||
* [#10068](http://dev.ckeditor.com/ticket/10068): Fixed: Support for protocol-relative URLs. |
||||
* [#11283](http://dev.ckeditor.com/ticket/11283): [Enhanced Image](http://ckeditor.com/addon/image2): A `<div>` element with `text-align: center` and an image inside is not recognised correctly. |
||||
* [#11196](http://dev.ckeditor.com/ticket/11196): [Accessibility Instructions](http://ckeditor.com/addon/a11yhelp): Allowed additional keyboard button labels to be translated in the dialog window. |
||||
|
||||
## CKEditor 4.3.1 |
||||
|
||||
**Important Notes:** |
||||
|
||||
* To match the naming convention, the `language` button is now `Language` ([#11201](http://dev.ckeditor.com/ticket/11201)). |
||||
* [Enhanced Image](http://ckeditor.com/addon/image2) button, context menu, command, and icon names match those of the [Image](http://ckeditor.com/addon/image) plugin ([#11222](http://dev.ckeditor.com/ticket/11222)). |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#11244](http://dev.ckeditor.com/ticket/11244): Changed: The [`widget.repository.checkWidgets()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-checkWidgets) method now fires the [`widget.repository.checkWidgets`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-event-checkWidgets) event, so from CKEditor 4.3.1 it is preferred to use the method rather than fire the event. |
||||
* [#11171](http://dev.ckeditor.com/ticket/11171): Fixed: [`editor.insertElement()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertElement) and [`editor.insertText()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertText) methods do not call the [`widget.repository.checkWidgets()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-checkWidgets) method. |
||||
* [#11085](http://dev.ckeditor.com/ticket/11085): [IE8] Replaced preview generated by the [Mathematical Formulas](http://ckeditor.com/addon/mathjax) widget with a placeholder. |
||||
* [#11044](http://dev.ckeditor.com/ticket/11044): Enhanced WAI-ARIA support for the [Language](http://ckeditor.com/addon/language) plugin drop-down menu. |
||||
* [#11075](http://dev.ckeditor.com/ticket/11075): With drop-down menu button focused, pressing the *Down Arrow* key will now open the menu and focus its first option. |
||||
* [#11165](http://dev.ckeditor.com/ticket/11165): Fixed: The [File Browser](http://ckeditor.com/addon/filebrowser) plugin cannot be removed from the editor. |
||||
* [#11159](http://dev.ckeditor.com/ticket/11159): [IE9-10] [Enhanced Image](http://ckeditor.com/addon/image2): Fixed buggy discovery of image dimensions. |
||||
* [#11101](http://dev.ckeditor.com/ticket/11101): Drop-down lists no longer break when given double quotes. |
||||
* [#11077](http://dev.ckeditor.com/ticket/11077): [Enhanced Image](http://ckeditor.com/addon/image2): Empty undo step recorded when resizing the image. |
||||
* [#10853](http://dev.ckeditor.com/ticket/10853): [Enhanced Image](http://ckeditor.com/addon/image2): Widget has paragraph wrapper when de-captioning unaligned image. |
||||
* [#11198](http://dev.ckeditor.com/ticket/11198): Widgets: Drag handler is not fully visible when an inline widget is in a heading. |
||||
* [#11132](http://dev.ckeditor.com/ticket/11132): [Firefox] Fixed: Caret is lost after drag and drop of an inline widget. |
||||
* [#11182](http://dev.ckeditor.com/ticket/11182): [IE10-11] Fixed: Editor crashes (IE11) or works with minor issues (IE10) if a page is loaded in Quirks Mode. See [`env.quirks`](http://docs.ckeditor.com/#!/api/CKEDITOR.env-property-quirks) for more details. |
||||
* [#11204](http://dev.ckeditor.com/ticket/11204): Added `figure` and `figcaption` styles to the `contents.css` file so [Enhanced Image](http://ckeditor.com/addon/image2) looks nicer. |
||||
* [#11202](http://dev.ckeditor.com/ticket/11202): Fixed: No newline in [BBCode](http://ckeditor.com/addon/bbcode) mode. |
||||
* [#10890](http://dev.ckeditor.com/ticket/10890): Fixed: Error thrown when pressing the *Delete* key in a list item. |
||||
* [#10055](http://dev.ckeditor.com/ticket/10055): [IE8-10] Fixed: *Delete* pressed on a selected image causes the browser to go back. |
||||
* [#11183](http://dev.ckeditor.com/ticket/11183): Fixed: Inserting a horizontal rule or a table in multiple row selection causes a browser crash. Additionally, the [`editor.insertElement()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertElement) method does not insert the element into every range of a selection any more. |
||||
* [#11042](http://dev.ckeditor.com/ticket/11042): Fixed: Selection made on an element containing a non-editable element was not auto faked. |
||||
* [#11125](http://dev.ckeditor.com/ticket/11125): Fixed: Keyboard navigation through menu and drop-down items will now cycle. |
||||
* [#11011](http://dev.ckeditor.com/ticket/11011): Fixed: The [`editor.applyStyle()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-applyStyle) method removes attributes from nested elements. |
||||
* [#11179](http://dev.ckeditor.com/ticket/11179): Fixed: [`editor.destroy()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-destroy) does not cleanup content generated by the [Table Resize](http://ckeditor.com/addon/tableresize) plugin for inline editors. |
||||
* [#11237](http://dev.ckeditor.com/ticket/11237): Fixed: Table border attribute value is deleted when pasting content from Microsoft Word. |
||||
* [#11250](http://dev.ckeditor.com/ticket/11250): Fixed: HTML entities inside the `<textarea>` element are not encoded. |
||||
* [#11260](http://dev.ckeditor.com/ticket/11260): Fixed: Initially disabled buttons are not read by JAWS as disabled. |
||||
* [#11200](http://dev.ckeditor.com/ticket/11200): Added [Clipboard](http://ckeditor.com/addon/clipboard) plugin as a dependency for [Widget](http://ckeditor.com/addon/widget) to fix drag and drop. |
||||
|
||||
## CKEditor 4.3 |
||||
|
||||
New Features: |
||||
|
||||
* [#10612](http://dev.ckeditor.com/ticket/10612): Internet Explorer 11 support. |
||||
* [#10869](http://dev.ckeditor.com/ticket/10869): Widgets: Added better integration with the [Elements Path](http://ckeditor.com/addon/elementspath) plugin. |
||||
* [#10886](http://dev.ckeditor.com/ticket/10886): Widgets: Added tooltip to the drag handle. |
||||
* [#10933](http://dev.ckeditor.com/ticket/10933): Widgets: Introduced drag and drop of block widgets with the [Line Utilities](http://ckeditor.com/addon/lineutils) plugin. |
||||
* [#10936](http://dev.ckeditor.com/ticket/10936): Widget System changes for easier integration with other dialog systems. |
||||
* [#10895](http://dev.ckeditor.com/ticket/10895): [Enhanced Image](http://ckeditor.com/addon/image2): Added file browser integration. |
||||
* [#11002](http://dev.ckeditor.com/ticket/11002): Added the [`draggable`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.definition-property-draggable) option to disable drag and drop support for widgets. |
||||
* [#10937](http://dev.ckeditor.com/ticket/10937): [Mathematical Formulas](http://ckeditor.com/addon/mathjax) widget improvements: |
||||
* loading indicator ([#10948](http://dev.ckeditor.com/ticket/10948)), |
||||
* applying paragraph changes (like font color change) to iframe ([#10841](http://dev.ckeditor.com/ticket/10841)), |
||||
* Firefox and IE9 clipboard fixes ([#10857](http://dev.ckeditor.com/ticket/10857)), |
||||
* fixing same origin policy issue ([#10840](http://dev.ckeditor.com/ticket/10840)), |
||||
* fixing undo bugs ([#10842](http://dev.ckeditor.com/ticket/10842), [#10930](http://dev.ckeditor.com/ticket/10930)), |
||||
* fixing other minor bugs. |
||||
* [#10862](http://dev.ckeditor.com/ticket/10862): [Placeholder](http://ckeditor.com/addon/placeholder) plugin was rewritten as a widget. |
||||
* [#10822](http://dev.ckeditor.com/ticket/10822): Added styles system integration with non-editable elements (for example widgets) and their nested editables. Styles cannot change non-editable content and are applied in nested editable only if allowed by its type and content filter. |
||||
* [#10856](http://dev.ckeditor.com/ticket/10856): Menu buttons will now toggle the visibility of their panels when clicked multiple times. [Language](http://ckeditor.com/addon/language) plugin fixes: Added active language highlighting, added an option to remove the language. |
||||
* [#10028](http://dev.ckeditor.com/ticket/10028): New [`config.dialog_noConfirmCancel`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-dialog_noConfirmCancel) configuration option that eliminates the need to confirm closing of a dialog window when the user changed any of its fields. |
||||
* [#10848](http://dev.ckeditor.com/ticket/10848): Integrate remaining plugins ([Styles](http://ckeditor.com/addon/stylescombo), [Format](http://ckeditor.com/addon/format), [Font](http://ckeditor.com/addon/font), [Color Button](http://ckeditor.com/addon/colorbutton), [Language](http://ckeditor.com/addon/language) and [Indent](http://ckeditor.com/addon/indent)) with [active filter](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-activeFilter). |
||||
* [#10855](http://dev.ckeditor.com/ticket/10855): Change the extension of emoticons in the [BBCode](http://ckeditor.com/addon/bbcode) sample from GIF to PNG. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10831](http://dev.ckeditor.com/ticket/10831): [Enhanced Image](http://ckeditor.com/addon/image2): Merged `image2inline` and `image2block` into one `image2` widget. |
||||
* [#10835](http://dev.ckeditor.com/ticket/10835): [Enhanced Image](http://ckeditor.com/addon/image2): Improved visibility of the resize handle. |
||||
* [#10836](http://dev.ckeditor.com/ticket/10836): [Enhanced Image](http://ckeditor.com/addon/image2): Preserve custom mouse cursor while resizing the image. |
||||
* [#10939](http://dev.ckeditor.com/ticket/10939): [Firefox] [Enhanced Image](http://ckeditor.com/addon/image2): hovering the image causes it to change. |
||||
* [#10866](http://dev.ckeditor.com/ticket/10866): Fixed: Broken *Tab* key navigation in the [Enhanced Image](http://ckeditor.com/addon/image2) dialog window. |
||||
* [#10833](http://dev.ckeditor.com/ticket/10833): Fixed: *Lock ratio* option should be on by default in the [Enhanced Image](http://ckeditor.com/addon/image2) dialog window. |
||||
* [#10881](http://dev.ckeditor.com/ticket/10881): Various improvements to *Enter* key behavior in nested editables. |
||||
* [#10879](http://dev.ckeditor.com/ticket/10879): [Remove Format](http://ckeditor.com/addon/removeformat) should not leak from a nested editable. |
||||
* [#10877](http://dev.ckeditor.com/ticket/10877): Fixed: [WebSpellChecker](http://ckeditor.com/addon/wsc) fails to apply changes if a nested editable was focused. |
||||
* [#10877](http://dev.ckeditor.com/ticket/10877): Fixed: [SCAYT](http://ckeditor.com/addon/wsc) blocks typing in nested editables. |
||||
* [#11079](http://dev.ckeditor.com/ticket/11079): Add button icons to the [Placeholder](http://ckeditor.com/addon/placeholder) sample. |
||||
* [#10870](http://dev.ckeditor.com/ticket/10870): The `paste` command is no longer being disabled when the clipboard is empty. |
||||
* [#10854](http://dev.ckeditor.com/ticket/10854): Fixed: Firefox prepends `<br>` to `<body>`, so it is stripped by the HTML data processor. |
||||
* [#10823](http://dev.ckeditor.com/ticket/10823): Fixed: [Link](http://ckeditor.com/addon/link) plugin does not work with non-editable content. |
||||
* [#10828](http://dev.ckeditor.com/ticket/10828): [Magic Line](http://ckeditor.com/addon/magicline) integration with the Widget System. |
||||
* [#10865](http://dev.ckeditor.com/ticket/10865): Improved hiding copybin, so copying widgets works smoothly. |
||||
* [#11066](http://dev.ckeditor.com/ticket/11066): Widget's private parts use CSS reset. |
||||
* [#11027](http://dev.ckeditor.com/ticket/11027): Fixed: Block commands break on widgets; added the [`contentDomInvalidated`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-contentDomInvalidated) event. |
||||
* [#10430](http://dev.ckeditor.com/ticket/10430): Resolve dependence of the [Image](http://ckeditor.com/addon/image) plugin on the [Form Elements](http://ckeditor.com/addon/forms) plugin. |
||||
* [#10911](http://dev.ckeditor.com/ticket/10911): Fixed: Browser *Alt* hotkeys will no longer be blocked while a widget is focused. |
||||
* [#11082](http://dev.ckeditor.com/ticket/11082): Fixed: Selected widget is not copied or cut when using toolbar buttons or context menu. |
||||
* [#11083](http://dev.ckeditor.com/ticket/11083): Fixed list and div element application to block widgets. |
||||
* [#10887](http://dev.ckeditor.com/ticket/10887): Internet Explorer 8 compatibility issues related to the Widget System. |
||||
* [#11074](http://dev.ckeditor.com/ticket/11074): Temporarily disabled inline widget drag and drop, because of seriously buggy native `range#moveToPoint` method. |
||||
* [#11098](http://dev.ckeditor.com/ticket/11098): Fixed: Wrong selection position after undoing widget drag and drop. |
||||
* [#11110](http://dev.ckeditor.com/ticket/11110): Fixed: IFrame and Flash objects are being incorrectly pasted in certain conditions. |
||||
* [#11129](http://dev.ckeditor.com/ticket/11129): Page break is lost when loading data. |
||||
* [#11123](http://dev.ckeditor.com/ticket/11123): [Firefox] Widget is destroyed after being dragged outside of `<body>`. |
||||
* [#11124](http://dev.ckeditor.com/ticket/11124): Fixed the [Elements Path](http://ckeditor.com/addon/elementspath) in an editor using the [Div Editing Area](http://ckeditor.com/addon/divarea). |
||||
|
||||
## CKEditor 4.3 Beta |
||||
|
||||
New Features: |
||||
|
||||
* [#9764](http://dev.ckeditor.com/ticket/9764): Widget System. |
||||
* [Widget plugin](http://ckeditor.com/addon/widget) introducing the [Widget API](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget). |
||||
* New [`editor.enterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-enterMode) and [`editor.shiftEnterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-shiftEnterMode) properties – normalized versions of [`config.enterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-enterMode) and [`config.shiftEnterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-shiftEnterMode). |
||||
* Dynamic editor settings. Starting from CKEditor 4.3 Beta, *Enter* mode values and [content filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) instances may be changed dynamically (for example when the caret was placed in an element in which editor features should be adjusted). When you are implementing a new editor feature, you should base its behavior on [dynamic](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-activeEnterMode) or [static](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-enterMode) *Enter* mode values depending on whether this feature works in selection context or globally on editor content. |
||||
* Dynamic *Enter* mode values – [`editor.setActiveEnterMode()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setActiveEnterMode) method, [`editor.activeEnterModeChange`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-activeEnterModeChange) event, and two properties: [`editor.activeEnterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-activeEnterMode) and [`editor.activeShiftEnterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-activeShiftEnterMode). |
||||
* Dynamic content filter instances – [`editor.setActiveFilter()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setActiveFilter) method, [`editor.activeFilterChange`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-activeFilterChange) event, and [`editor.activeFilter`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-activeFilter) property. |
||||
* "Fake" selection was introduced. It makes it possible to virtually select any element when the real selection remains hidden. See the [`selection.fake()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.selection-method-fake) method. |
||||
* Default [`htmlParser.filter`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter) rules are not applied to non-editable elements (elements with `contenteditable` attribute set to `false` and their descendants) anymore. To add a rule which will be applied to all elements you need to pass an additional argument to the [`filter.addRules()`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter-method-addRules) method. |
||||
* Dozens of new methods were introduced – most interesting ones: |
||||
* [`document.find()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.document-method-find), |
||||
* [`document.findOne()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.document-method-findOne), |
||||
* [`editable.insertElementIntoRange()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editable-method-insertElementIntoRange), |
||||
* [`range.moveToClosestEditablePosition()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.range-method-moveToClosestEditablePosition), |
||||
* New methods for [`htmlParser.node`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.node) and [`htmlParser.element`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.element). |
||||
* [#10659](http://dev.ckeditor.com/ticket/10659): New [Enhanced Image](http://ckeditor.com/addon/image2) plugin that introduces a widget with integrated image captions, an option to center images, and dynamic "click and drag" resizing. |
||||
* [#10664](http://dev.ckeditor.com/ticket/10664): New [Mathematical Formulas](http://ckeditor.com/addon/mathjax) plugin that introduces the MathJax widget. |
||||
* [#7987](https://dev.ckeditor.com/ticket/7987): New [Language](http://ckeditor.com/addon/language) plugin that implements Language toolbar button to support [WCAG 3.1.2 Language of Parts](http://www.w3.org/TR/UNDERSTANDING-WCAG20/meaning-other-lang-id.html). |
||||
* [#10708](http://dev.ckeditor.com/ticket/10708): New [smileys](http://ckeditor.com/addon/smiley). |
||||
|
||||
## CKEditor 4.2.3 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10994](http://dev.ckeditor.com/ticket/10994): Fixed: Loading external jQuery library when opening the [jQuery Adapter](http://docs.ckeditor.com/#!/guide/dev_jquery) sample directly from file. |
||||
* [#10975](http://dev.ckeditor.com/ticket/10975): [IE] Fixed: Error thrown while opening the color palette. |
||||
* [#9929](http://dev.ckeditor.com/ticket/9929): [Blink/WebKit] Fixed: A non-breaking space is created once a character is deleted and a regular space is typed. |
||||
* [#10963](http://dev.ckeditor.com/ticket/10963): Fixed: JAWS issue with the keyboard shortcut for [Magic Line](http://ckeditor.com/addon/magicline). |
||||
* [#11096](http://dev.ckeditor.com/ticket/11096): Fixed: TypeError: Object has no method 'is'. |
||||
|
||||
## CKEditor 4.2.2 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#9314](http://dev.ckeditor.com/ticket/9314): Fixed: Incorrect error message on closing a dialog window without saving changs. |
||||
* [#10308](http://dev.ckeditor.com/ticket/10308): [IE10] Fixed: Unspecified error when deleting a row. |
||||
* [#10945](http://dev.ckeditor.com/ticket/10945): [Chrome] Fixed: Clicking with a mouse inside the editor does not show the caret. |
||||
* [#10912](http://dev.ckeditor.com/ticket/10912): Prevent default action when content of a non-editable link is clicked. |
||||
* [#10913](http://dev.ckeditor.com/ticket/10913): Fixed [`CKEDITOR.plugins.addExternal()`](http://docs.ckeditor.com/#!/api/CKEDITOR.resourceManager-method-addExternal) not handling paths including file name specified. |
||||
* [#10666](http://dev.ckeditor.com/ticket/10666): Fixed [`CKEDITOR.tools.isArray()`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-isArray) not working cross frame. |
||||
* [#10910](http://dev.ckeditor.com/ticket/10910): [IE9] Fixed JavaScript error thrown in Compatibility Mode when clicking and/or typing in the editing area. |
||||
* [#10868](http://dev.ckeditor.com/ticket/10868): [IE8] Prevent the browser from crashing when applying the Inline Quotation style. |
||||
* [#10915](http://dev.ckeditor.com/ticket/10915): Fixed: Invalid CSS filter in the Kama skin. |
||||
* [#10914](http://dev.ckeditor.com/ticket/10914): Plugins [Indent List](http://ckeditor.com/addon/indentlist) and [Indent Block](http://ckeditor.com/addon/indentblock) are now included in the build configuration. |
||||
* [#10812](http://dev.ckeditor.com/ticket/10812): Fixed [`range.createBookmark2()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.range-method-createBookmark2) incorrectly normalizing offsets. This bug was causing many issues: [#10850](http://dev.ckeditor.com/ticket/10850), [#10842](http://dev.ckeditor.com/ticket/10842). |
||||
* [#10951](http://dev.ckeditor.com/ticket/10951): Reviewed and optimized focus handling on panels (combo, menu buttons, color buttons, and context menu) to enhance accessibility. Fixed [#10705](http://dev.ckeditor.com/ticket/10705), [#10706](http://dev.ckeditor.com/ticket/10706) and [#10707](http://dev.ckeditor.com/ticket/10707). |
||||
* [#10704](http://dev.ckeditor.com/ticket/10704): Fixed a JAWS issue with the Select Color dialog window title not being announced. |
||||
* [#10753](http://dev.ckeditor.com/ticket/10753): The floating toolbar in inline instances now has a dedicated accessibility label. |
||||
|
||||
## CKEditor 4.2.1 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10301](http://dev.ckeditor.com/ticket/10301): [IE9-10] Undo fails after 3+ consecutive paste actions with a JavaScript error. |
||||
* [#10689](http://dev.ckeditor.com/ticket/10689): Save toolbar button saves only the first editor instance. |
||||
* [#10368](http://dev.ckeditor.com/ticket/10368): Move language reading direction definition (`dir`) from main language file to core. |
||||
* [#9330](http://dev.ckeditor.com/ticket/9330): Fixed pasting anchors from MS Word. |
||||
* [#8103](http://dev.ckeditor.com/ticket/8103): Fixed pasting nested lists from MS Word. |
||||
* [#9958](http://dev.ckeditor.com/ticket/9958): [IE9] Pressing the "OK" button will trigger the `onbeforeunload` event in the popup dialog. |
||||
* [#10662](http://dev.ckeditor.com/ticket/10662): Fixed styles from the Styles drop-down list not registering to the ACF in case when the [Shared Spaces plugin](http://ckeditor.com/addon/sharedspace) is used. |
||||
* [#9654](http://dev.ckeditor.com/ticket/9654): Problems with Internet Explorer 10 Quirks Mode. |
||||
* [#9816](http://dev.ckeditor.com/ticket/9816): Floating toolbar does not reposition vertically in several cases. |
||||
* [#10646](http://dev.ckeditor.com/ticket/10646): Removing a selected sublist or nested table with *Backspace/Delete* removes the parent element. |
||||
* [#10623](http://dev.ckeditor.com/ticket/10623): [WebKit] Page is scrolled when opening a drop-down list. |
||||
* [#10004](http://dev.ckeditor.com/ticket/10004): [ChromeVox] Button names are not announced. |
||||
* [#10731](http://dev.ckeditor.com/ticket/10731): [WebSpellChecker](http://ckeditor.com/addon/wsc) plugin breaks cloning of editor configuration. |
||||
* It is now possible to set per instance [WebSpellChecker](http://ckeditor.com/addon/wsc) plugin configuration instead of setting the configuration globally. |
||||
|
||||
## CKEditor 4.2 |
||||
|
||||
**Important Notes:** |
||||
|
||||
* Dropped compatibility support for Internet Explorer 7 and Firefox 3.6. |
||||
|
||||
* Both the Basic and the Standard distribution packages will not contain the new [Indent Block](http://ckeditor.com/addon/indentblock) plugin. Because of this the [Advanced Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) might remove block indentations from existing contents. If you want to prevent this, either [add an appropriate ACF rule to your filter](http://docs.ckeditor.com/#!/guide/dev_allowed_content_rules) or create a custom build based on the Basic/Standard package and add the Indent Block plugin in [CKBuilder](http://ckeditor.com/builder). |
||||
|
||||
New Features: |
||||
|
||||
* [#10027](http://dev.ckeditor.com/ticket/10027): Separated list and block indentation into two plugins: [Indent List](http://ckeditor.com/addon/indentlist) and [Indent Block](http://ckeditor.com/addon/indentblock). |
||||
* [#8244](http://dev.ckeditor.com/ticket/8244): Use *(Shift+)Tab* to indent and outdent lists. |
||||
* [#10281](http://dev.ckeditor.com/ticket/10281): The [jQuery Adapter](http://docs.ckeditor.com/#!/guide/dev_jquery) is now available. Several jQuery-related issues fixed: [#8261](http://dev.ckeditor.com/ticket/8261), [#9077](http://dev.ckeditor.com/ticket/9077), [#8710](http://dev.ckeditor.com/ticket/8710), [#8530](http://dev.ckeditor.com/ticket/8530), [#9019](http://dev.ckeditor.com/ticket/9019), [#6181](http://dev.ckeditor.com/ticket/6181), [#7876](http://dev.ckeditor.com/ticket/7876), [#6906](http://dev.ckeditor.com/ticket/6906). |
||||
* [#10042](http://dev.ckeditor.com/ticket/10042): Introduced [`config.title`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-title) setting to change the human-readable title of the editor. |
||||
* [#9794](http://dev.ckeditor.com/ticket/9794): Added [`editor.onChange`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-change) event. |
||||
* [#9923](http://dev.ckeditor.com/ticket/9923): HiDPI support in the editor UI. HiDPI icons for [Moono skin](http://ckeditor.com/addon/moono) added. |
||||
* [#8031](http://dev.ckeditor.com/ticket/8031): Handle `required` attributes on `<textarea>` elements — introduced [`editor.required`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-required) event. |
||||
* [#10280](http://dev.ckeditor.com/ticket/10280): Ability to replace `<textarea>` elements with the inline editor. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10599](http://dev.ckeditor.com/ticket/10599): [Indent](http://ckeditor.com/addon/indent) plugin is no longer required by the [List](http://ckeditor.com/addon/list) plugin. |
||||
* [#10370](http://dev.ckeditor.com/ticket/10370): Inconsistency in data events between framed and inline editors. |
||||
* [#10438](http://dev.ckeditor.com/ticket/10438): [FF, IE] No selection is done on an editable element on executing [`editor.setData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setData). |
||||
|
||||
## CKEditor 4.1.3 |
||||
|
||||
New Features: |
||||
|
||||
* Added new translation: Indonesian. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10644](http://dev.ckeditor.com/ticket/10644): Fixed a critical bug when pasting plain text in Blink-based browsers. |
||||
* [#5189](http://dev.ckeditor.com/ticket/5189): [Find/Replace](http://ckeditor.com/addon/find) dialog window: rename "Cancel" button to "Close". |
||||
* [#10562](http://dev.ckeditor.com/ticket/10562): [Housekeeping] Unified CSS gradient filter formats in the [Moono](http://ckeditor.com/addon/moono) skin. |
||||
* [#10537](http://dev.ckeditor.com/ticket/10537): Advanced Content Filter should register a default rule for [`config.shiftEnterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-shiftEnterMode). |
||||
* [#10610](http://dev.ckeditor.com/ticket/10610): [`CKEDITOR.dialog.addIframe()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dialog-static-method-addIframe) incorrectly sets the iframe size in dialog windows. |
||||
|
||||
## CKEditor 4.1.2 |
||||
|
||||
New Features: |
||||
|
||||
* Added new translation: Sinhala. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10339](http://dev.ckeditor.com/ticket/10339): Fixed: Error thrown when inserted data was totally stripped out after filtering and processing. |
||||
* [#10298](http://dev.ckeditor.com/ticket/10298): Fixed: Data processor breaks attributes containing protected parts. |
||||
* [#10367](http://dev.ckeditor.com/ticket/10367): Fixed: [`editable.insertText()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editable-method-insertText) loses characters when `RegExp` replace controls are being inserted. |
||||
* [#10165](http://dev.ckeditor.com/ticket/10165): [IE] Access denied error when `document.domain` has been altered. |
||||
* [#9761](http://dev.ckeditor.com/ticket/9761): Update the *Backspace* key state in [`keystrokeHandler.blockedKeystrokes`](http://docs.ckeditor.com/#!/api/CKEDITOR.keystrokeHandler-property-blockedKeystrokes) when calling [`editor.setReadOnly()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setReadOnly). |
||||
* [#6504](http://dev.ckeditor.com/ticket/6504): Fixed: Race condition while loading several [`config.customConfig`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-customConfig) files. |
||||
* [#10146](http://dev.ckeditor.com/ticket/10146): [Firefox] Empty lines are being removed while [`config.enterMode`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-enterMode) is [`CKEDITOR.ENTER_BR`](http://docs.ckeditor.com/#!/api/CKEDITOR-property-ENTER_BR). |
||||
* [#10360](http://dev.ckeditor.com/ticket/10360): Fixed: ARIA `role="application"` should not be used for dialog windows. |
||||
* [#10361](http://dev.ckeditor.com/ticket/10361): Fixed: ARIA `role="application"` should not be used for floating panels. |
||||
* [#10510](http://dev.ckeditor.com/ticket/10510): Introduced unique voice labels to differentiate between different editor instances. |
||||
* [#9945](http://dev.ckeditor.com/ticket/9945): [iOS] Scrolling not possible on iPad. |
||||
* [#10389](http://dev.ckeditor.com/ticket/10389): Fixed: Invalid HTML in the "Text and Table" template. |
||||
* [WebSpellChecker](http://ckeditor.com/addon/wsc) plugin user interface was changed to match CKEditor 4 style. |
||||
|
||||
## CKEditor 4.1.1 |
||||
|
||||
New Features: |
||||
|
||||
* Added new translation: Albanian. |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10172](http://dev.ckeditor.com/ticket/10172): Pressing *Delete* or *Backspace* in an empty table cell moves the cursor to the next/previous cell. |
||||
* [#10219](http://dev.ckeditor.com/ticket/10219): Error thrown when destroying an editor instance in parallel with a `mouseup` event. |
||||
* [#10265](http://dev.ckeditor.com/ticket/10265): Wrong loop type in the [File Browser](http://ckeditor.com/addon/filebrowser) plugin. |
||||
* [#10249](http://dev.ckeditor.com/ticket/10249): Wrong undo/redo states at start. |
||||
* [#10268](http://dev.ckeditor.com/ticket/10268): [Show Blocks](http://ckeditor.com/addon/showblocks) does not recover after switching to Source view. |
||||
* [#9995](http://dev.ckeditor.com/ticket/9995): HTML code in the `<textarea>` should not be modified by the [`htmlDataProcessor`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlDataProcessor). |
||||
* [#10320](http://dev.ckeditor.com/ticket/10320): [Justify](http://ckeditor.com/addon/justify) plugin should add elements to Advanced Content Filter based on current [Enter mode](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-enterMode). |
||||
* [#10260](http://dev.ckeditor.com/ticket/10260): Fixed: Advanced Content Filter blocks [`tabSpaces`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-tabSpaces). Unified `data-cke-*` attributes filtering. |
||||
* [#10315](http://dev.ckeditor.com/ticket/10315): [WebKit] [Undo manager](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.undo.UndoManager) should not record snapshots after a filling character was added/removed. |
||||
* [#10291](http://dev.ckeditor.com/ticket/10291): [WebKit] Space after a filling character should be secured. |
||||
* [#10330](http://dev.ckeditor.com/ticket/10330): [WebKit] The filling character is not removed on `keydown` in specific cases. |
||||
* [#10285](http://dev.ckeditor.com/ticket/10285): Fixed: Styled text pasted from MS Word causes an infinite loop. |
||||
* [#10131](http://dev.ckeditor.com/ticket/10131): Fixed: [`undoManager.update()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.undo.UndoManager-method-update) does not refresh the command state. |
||||
* [#10337](http://dev.ckeditor.com/ticket/10337): Fixed: Unable to remove `<s>` using [Remove Format](http://ckeditor.com/addon/removeformat). |
||||
|
||||
## CKEditor 4.1 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10192](http://dev.ckeditor.com/ticket/10192): Closing lists with the *Enter* key does not work with [Advanced Content Filter](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) in several cases. |
||||
* [#10191](http://dev.ckeditor.com/ticket/10191): Fixed allowed content rules unification, so the [`filter.allowedContent`](http://docs.ckeditor.com/#!/api/CKEDITOR.filter-property-allowedContent) property always contains rules in the same format. |
||||
* [#10224](http://dev.ckeditor.com/ticket/10224): Advanced Content Filter does not remove non-empty `<a>` elements anymore. |
||||
* Minor issues in plugin integration with Advanced Content Filter: |
||||
* [#10166](http://dev.ckeditor.com/ticket/10166): Added transformation from the `align` attribute to `float` style to preserve backward compatibility after the introduction of Advanced Content Filter. |
||||
* [#10195](http://dev.ckeditor.com/ticket/10195): [Image](http://ckeditor.com/addon/image) plugin no longer registers rules for links to Advanced Content Filter. |
||||
* [#10213](http://dev.ckeditor.com/ticket/10213): [Justify](http://ckeditor.com/addon/justify) plugin is now correctly registering rules to Advanced Content Filter when [`config.justifyClasses`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-justifyClasses) is defined. |
||||
|
||||
## CKEditor 4.1 RC |
||||
|
||||
New Features: |
||||
|
||||
* [#9829](http://dev.ckeditor.com/ticket/9829): Advanced Content Filter - data and features activation based on editor configuration. |
||||
|
||||
Brand new data filtering system that works in 2 modes: |
||||
|
||||
* Based on loaded features (toolbar items, plugins) - the data will be filtered according to what the editor in its |
||||
current configuration can handle. |
||||
* Based on [`config.allowedContent`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent) rules - the data |
||||
will be filtered and the editor features (toolbar items, commands, keystrokes) will be enabled if they are allowed. |
||||
|
||||
See the `datafiltering.html` sample, [guides](http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter) and [`CKEDITOR.filter` API documentation](http://docs.ckeditor.com/#!/api/CKEDITOR.filter). |
||||
* [#9387](http://dev.ckeditor.com/ticket/9387): Reintroduced [Shared Spaces](http://ckeditor.com/addon/sharedspace) - the ability to display toolbar and bottom editor space in selected locations and to share them by different editor instances. |
||||
* [#9907](http://dev.ckeditor.com/ticket/9907): Added the [`contentPreview`](http://docs.ckeditor.com/#!/api/CKEDITOR-event-contentPreview) event for preview data manipulation. |
||||
* [#9713](http://dev.ckeditor.com/ticket/9713): Introduced the [Source Dialog](http://ckeditor.com/addon/sourcedialog) plugin that brings raw HTML editing for inline editor instances. |
||||
* Included in [#9829](http://dev.ckeditor.com/ticket/9829): Introduced new events, [`toHtml`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-toHtml) and [`toDataFormat`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-toDataFormat), allowing for better integration with data processing. |
||||
* [#9981](http://dev.ckeditor.com/ticket/9981): Added ability to filter [`htmlParser.fragment`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.fragment), [`htmlParser.element`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.element) etc. by many [`htmlParser.filter`](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter)s before writing structure to an HTML string. |
||||
* Included in [#10103](http://dev.ckeditor.com/ticket/10103): |
||||
* Introduced the [`editor.status`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-status) property to make it easier to check the current status of the editor. |
||||
* Default [`command`](http://docs.ckeditor.com/#!/api/CKEDITOR.command) state is now [`CKEDITOR.TRISTATE_DISABLE`](http://docs.ckeditor.com/#!/api/CKEDITOR-property-TRISTATE_DISABLED). It will be activated on [`editor.instanceReady`](http://docs.ckeditor.com/#!/api/CKEDITOR-event-instanceReady) or immediately after being added if the editor is already initialized. |
||||
* [#9796](http://dev.ckeditor.com/ticket/9796): Introduced `<s>` as a default tag for strikethrough, which replaces obsolete `<strike>` in HTML5. |
||||
|
||||
## CKEditor 4.0.3 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#10196](http://dev.ckeditor.com/ticket/10196): Fixed context menus not opening with keyboard shortcuts when [Autogrow](http://ckeditor.com/addon/autogrow) is enabled. |
||||
* [#10212](http://dev.ckeditor.com/ticket/10212): [IE7-10] Undo command throws errors after multiple switches between Source and WYSIWYG view. |
||||
* [#10219](http://dev.ckeditor.com/ticket/10219): [Inline editor] Error thrown after calling [`editor.destroy()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-destroy). |
||||
|
||||
## CKEditor 4.0.2 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#9779](http://dev.ckeditor.com/ticket/9779): Fixed overriding [`CKEDITOR.getUrl()`](http://docs.ckeditor.com/#!/api/CKEDITOR-method-getUrl) with `CKEDITOR_GETURL`. |
||||
* [#9772](http://dev.ckeditor.com/ticket/9772): Custom buttons in the dialog window footer have different look and size ([Moono](http://ckeditor.com/addon/moono), [Kama](http://ckeditor.com/addon/kama) skins). |
||||
* [#9029](http://dev.ckeditor.com/ticket/9029): Custom styles added with the [`stylesSet.add()`](http://docs.ckeditor.com/#!/api/CKEDITOR.stylesSet-method-add) are displayed in the wrong order. |
||||
* [#9887](http://dev.ckeditor.com/ticket/9887): Disable [Magic Line](http://ckeditor.com/addon/magicline) when [`editor.readOnly`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-readOnly) is set. |
||||
* [#9882](http://dev.ckeditor.com/ticket/9882): Fixed empty document title on [`editor.getData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getData) if set via the Document Properties dialog window. |
||||
* [#9773](http://dev.ckeditor.com/ticket/9773): Fixed rendering problems with selection fields in the Kama skin. |
||||
* [#9851](http://dev.ckeditor.com/ticket/9851): The [`selectionChange`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-selectionChange) event is not fired when mouse selection ended outside editable. |
||||
* [#9903](http://dev.ckeditor.com/ticket/9903): [Inline editor] Bad positioning of floating space with page horizontal scroll. |
||||
* [#9872](http://dev.ckeditor.com/ticket/9872): [`editor.checkDirty()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-checkDirty) returns `true` when called onload. Removed the obsolete `editor.mayBeDirty` flag. |
||||
* [#9893](http://dev.ckeditor.com/ticket/9893): [IE] Fixed broken toolbar when editing mixed direction content in Quirks mode. |
||||
* [#9845](http://dev.ckeditor.com/ticket/9845): Fixed TAB navigation in the [Link](http://ckeditor.com/addon/link) dialog window when the Anchor option is used and no anchors are available. |
||||
* [#9883](http://dev.ckeditor.com/ticket/9883): Maximizing was making the entire page editable with [divarea](http://ckeditor.com/addon/divarea)-based editors. |
||||
* [#9940](http://dev.ckeditor.com/ticket/9940): [Firefox] Navigating back to a page with the editor was making the entire page editable. |
||||
* [#9966](http://dev.ckeditor.com/ticket/9966): Fixed: Unable to type square brackets with French keyboard layout. Changed [Magic Line](http://ckeditor.com/addon/magicline) keystrokes. |
||||
* [#9507](http://dev.ckeditor.com/ticket/9507): [Firefox] Selection is moved before editable position when the editor is focused for the first time. |
||||
* [#9947](http://dev.ckeditor.com/ticket/9947): [WebKit] Editor overflows parent container in some edge cases. |
||||
* [#10105](http://dev.ckeditor.com/ticket/10105): Fixed: Broken [sourcearea](http://ckeditor.com/addon/sourcearea) view when an RTL language is set. |
||||
* [#10123](http://dev.ckeditor.com/ticket/10123): [WebKit] Fixed: Several dialog windows have broken layout since the latest WebKit release. |
||||
* [#10152](http://dev.ckeditor.com/ticket/10152): Fixed: Invalid ARIA property used on menu items. |
||||
|
||||
## CKEditor 4.0.1.1 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* Security update: Added protection against XSS attack and possible path disclosure in the PHP sample. |
||||
|
||||
## CKEditor 4.0.1 |
||||
|
||||
Fixed Issues: |
||||
|
||||
* [#9655](http://dev.ckeditor.com/ticket/9655): Support for IE Quirks Mode in the new [Moono skin](http://ckeditor.com/addon/moono). |
||||
* Accessibility issues (mainly in inline editor): [#9364](http://dev.ckeditor.com/ticket/9364), [#9368](http://dev.ckeditor.com/ticket/9368), [#9369](http://dev.ckeditor.com/ticket/9369), [#9370](http://dev.ckeditor.com/ticket/9370), [#9541](http://dev.ckeditor.com/ticket/9541), [#9543](http://dev.ckeditor.com/ticket/9543), [#9841](http://dev.ckeditor.com/ticket/9841), [#9844](http://dev.ckeditor.com/ticket/9844). |
||||
* [Magic Line](http://ckeditor.com/addon/magicline) plugin: |
||||
* [#9481](http://dev.ckeditor.com/ticket/9481): Added accessibility support for Magic Line. |
||||
* [#9509](http://dev.ckeditor.com/ticket/9509): Added Magic Line support for forms. |
||||
* [#9573](http://dev.ckeditor.com/ticket/9573): Magic Line does not disappear on `mouseout` in a specific case. |
||||
* [#9754](http://dev.ckeditor.com/ticket/9754): [WebKit] Cutting & pasting simple unformatted text generates an inline wrapper in WebKit browsers. |
||||
* [#9456](http://dev.ckeditor.com/ticket/9456): [Chrome] Properly paste bullet list style from MS Word. |
||||
* [#9699](http://dev.ckeditor.com/ticket/9699), [#9758](http://dev.ckeditor.com/ticket/9758): Improved selection locking when selecting by dragging. |
||||
* Context menu: |
||||
* [#9712](http://dev.ckeditor.com/ticket/9712): Opening the context menu destroys editor focus. |
||||
* [#9366](http://dev.ckeditor.com/ticket/9366): Context menu should be displayed over the floating toolbar. |
||||
* [#9706](http://dev.ckeditor.com/ticket/9706): Context menu generates a JavaScript error in inline mode when the editor is attached to a header element. |
||||
* [#9800](http://dev.ckeditor.com/ticket/9800): Hide float panel when resizing the window. |
||||
* [#9721](http://dev.ckeditor.com/ticket/9721): Padding in content of div-based editor puts the editing area under the bottom UI space. |
||||
* [#9528](http://dev.ckeditor.com/ticket/9528): Host page `box-sizing` style should not influence the editor UI elements. |
||||
* [#9503](http://dev.ckeditor.com/ticket/9503): [Form Elements](http://ckeditor.com/addon/forms) plugin adds context menu listeners only on supported input types. Added support for `tel`, `email`, `search` and `url` input types. |
||||
* [#9769](http://dev.ckeditor.com/ticket/9769): Improved floating toolbar positioning in a narrow window. |
||||
* [#9875](http://dev.ckeditor.com/ticket/9875): Table dialog window does not populate width correctly. |
||||
* [#8675](http://dev.ckeditor.com/ticket/8675): Deleting cells in a nested table removes the outer table cell. |
||||
* [#9815](http://dev.ckeditor.com/ticket/9815): Cannot edit dialog window fields in an editor initialized in the jQuery UI modal dialog. |
||||
* [#8888](http://dev.ckeditor.com/ticket/8888): CKEditor dialog windows do not show completely in a small window. |
||||
* [#9360](http://dev.ckeditor.com/ticket/9360): [Inline editor] Blocks shown for a `<div>` element stay permanently even after the user exits editing the `<div>`. |
||||
* [#9531](http://dev.ckeditor.com/ticket/9531): [Firefox & Inline editor] Toolbar is lost when closing the Format drop-down list by clicking its button. |
||||
* [#9553](http://dev.ckeditor.com/ticket/9553): Table width incorrectly set when the `border-width` style is specified. |
||||
* [#9594](http://dev.ckeditor.com/ticket/9594): Cannot tab past CKEditor when it is in read-only mode. |
||||
* [#9658](http://dev.ckeditor.com/ticket/9658): [IE9] Justify not working on selected images. |
||||
* [#9686](http://dev.ckeditor.com/ticket/9686): Added missing contents styles for `<pre>` elements. |
||||
* [#9709](http://dev.ckeditor.com/ticket/9709): [Paste from Word](http://ckeditor.com/addon/pastefromword) should not depend on configuration from other styles. |
||||
* [#9726](http://dev.ckeditor.com/ticket/9726): Removed [Color Dialog](http://ckeditor.com/addon/colordialog) plugin dependency from [Table Tools](http://ckeditor.com/addon/tabletools). |
||||
* [#9765](http://dev.ckeditor.com/ticket/9765): Toolbar Collapse command documented incorrectly in the [Accessibility Instructions](http://ckeditor.com/addon/a11yhelp) dialog window. |
||||
* [#9771](http://dev.ckeditor.com/ticket/9771): [WebKit & Opera] Fixed scrolling issues when pasting. |
||||
* [#9787](http://dev.ckeditor.com/ticket/9787): [IE9] `onChange` is not fired for checkboxes in dialogs. |
||||
* [#9842](http://dev.ckeditor.com/ticket/9842): [Firefox 17] When opening a toolbar menu for the first time and pressing the *Down Arrow* key, focus goes to the next toolbar button instead of the menu options. |
||||
* [#9847](http://dev.ckeditor.com/ticket/9847): [Elements Path](http://ckeditor.com/addon/elementspath) should not be initialized in the inline editor. |
||||
* [#9853](http://dev.ckeditor.com/ticket/9853): [`editor.addRemoveFormatFilter()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-addRemoveFormatFilter) is exposed before it really works. |
||||
* [#8893](http://dev.ckeditor.com/ticket/8893): Value of the [`pasteFromWordCleanupFile`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-pasteFromWordCleanupFile) configuration option is now taken from the instance configuration. |
||||
* [#9693](http://dev.ckeditor.com/ticket/9693): Removed "Live Preview" checkbox from UI color picker. |
||||
|
||||
|
||||
## CKEditor 4.0 |
||||
|
||||
The first stable release of the new CKEditor 4 code line. |
||||
|
||||
The CKEditor JavaScript API has been kept compatible with CKEditor 4, whenever |
||||
possible. The list of relevant changes can be found in the [API Changes page of |
||||
the CKEditor 4 documentation][1]. |
||||
|
||||
[1]: http://docs.ckeditor.com/#!/guide/dev_api_changes "API Changes" |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,82 @@ |
||||
CKEditor 4 - Releases |
||||
===================== |
||||
|
||||
## Releases Code |
||||
|
||||
This repository contains the official release versions of [CKEditor](http://ckeditor.com). |
||||
|
||||
There are four versions for each release — `standard-all`, `basic`, `standard`, and `full`. |
||||
They differ in the number of plugins that are compiled into the main `ckeditor.js` file as well as the toolbar configuration. |
||||
|
||||
See the [comparison](http://ckeditor.com/presets) of the `basic`, `standard`, and `full` installation presets for more details. |
||||
|
||||
The `standard-all` build includes all official CKSource plugins with only those from the `standard` installation preset compiled into the `ckeditor.js` file and enabled in the configuration. |
||||
|
||||
All versions available in this repository were built using [CKBuilder](http://ckeditor.com/builder), so they are optimized and ready to be used in a production environment. |
||||
|
||||
## Documentation |
||||
|
||||
Developer documentation for CKEditor is available online at: <http://docs.ckeditor.com>. |
||||
|
||||
## Installation |
||||
|
||||
### Git clone |
||||
|
||||
To install one of the available releases, just clone this repository and switch to the respective branch (see next section): |
||||
|
||||
git clone -b <release branch> git://github.com/ckeditor/ckeditor-releases.git |
||||
|
||||
### Git submodule |
||||
|
||||
If you are using git for your project and you want to integrate CKEditor, we recommend to add this repository as a |
||||
[submodule](http://git-scm.com/book/en/Git-Tools-Submodules). |
||||
|
||||
git submodule add -b <release branch> git://github.com/ckeditor/ckeditor-releases.git <clone dir> |
||||
git commit -m "Added CKEditor submodule in <clone dir> directory." |
||||
|
||||
### Using Package Managers |
||||
|
||||
See the [Installing CKEditor with Package Managers](http://docs.ckeditor.com/#!/guide/dev_package_managers) article for more details about installing CKEditor with Bower and Composer. |
||||
|
||||
## Repository Structure |
||||
|
||||
### Branches |
||||
|
||||
This repository contains the following branches: |
||||
|
||||
- `master` and `latest` – the latest release of the `standard-all` preset (including betas). |
||||
- `stable` – the latest stable release of the `standard-all` preset (non-beta). |
||||
- `A.B.x` (e.g. `4.3.x`) – the latest release of the `standard-all` preset in the `A.B` branch. |
||||
- `(basic|standard|full)/stable` – the latest stable release tag point (non-beta). |
||||
- `(basic|standard|full)/latest` – the latest release tag point (including betas). |
||||
- `(basic|standard|full)/A.B.x` (e.g. `basic/4.0.x`) – the latest releases in the `A.B` branch. |
||||
|
||||
### Tags |
||||
|
||||
**Since version 4.3.3** this repository uses the following tag naming rules: |
||||
|
||||
- `x.y.z` – contains the `standard-all` editor build, e.g. `4.3.3`, `4.4.0` etc. |
||||
- `(basic|standard|full)/x.y.z` – contains the editor build with a given preset, e.g. `basic/4.3.3`. |
||||
|
||||
The version numbers follow the [Semantic Versioning 2.0.0](http://semver.org/) scheme. |
||||
|
||||
Up to version **4.3.2** the tags were released in the following form `x.y[.z]/(basic|standard|full)`. |
||||
For example: `4.0/basic`, `4.0.1/standard`. This convention was changed in CKEditor 4.3.3 to conform to the Semantic Versioning scheme. |
||||
|
||||
## Checking Your Installation |
||||
|
||||
The editor comes with a few sample pages that can be used to verify if the installation succeeded. Take a look at the `samples` directory. |
||||
|
||||
To test your installation, just call the following page for your website: |
||||
|
||||
http://<your site>/<CKEditor installation path>/samples/index.html |
||||
|
||||
For example: |
||||
|
||||
http://www.example.com/ckeditor/samples/index.html |
||||
|
||||
### License |
||||
|
||||
Licensed under the GPL, LGPL, and MPL licenses, at your choice. |
||||
|
||||
Please check the `LICENSE.md` file for more information about the license. |
@ -0,0 +1,10 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
(function(a){CKEDITOR.config.jqueryOverrideVal="undefined"==typeof CKEDITOR.config.jqueryOverrideVal?!0:CKEDITOR.config.jqueryOverrideVal;"undefined"!=typeof a&&(a.extend(a.fn,{ckeditorGet:function(){var a=this.eq(0).data("ckeditorInstance");if(!a)throw"CKEditor is not initialized yet, use ckeditor() with a callback.";return a},ckeditor:function(g,d){if(!CKEDITOR.env.isCompatible)throw Error("The environment is incompatible.");if(!a.isFunction(g))var k=d,d=g,g=k;var i=[],d=d||{};this.each(function(){var b= |
||||
a(this),c=b.data("ckeditorInstance"),f=b.data("_ckeditorInstanceLock"),h=this,j=new a.Deferred;i.push(j.promise());if(c&&!f)g&&g.apply(c,[this]),j.resolve();else if(f)c.once("instanceReady",function(){setTimeout(function(){c.element?(c.element.$==h&&g&&g.apply(c,[h]),j.resolve()):setTimeout(arguments.callee,100)},0)},null,null,9999);else{if(d.autoUpdateElement||"undefined"==typeof d.autoUpdateElement&&CKEDITOR.config.autoUpdateElement)d.autoUpdateElementJquery=!0;d.autoUpdateElement=!1;b.data("_ckeditorInstanceLock", |
||||
!0);c=a(this).is("textarea")?CKEDITOR.replace(h,d):CKEDITOR.inline(h,d);b.data("ckeditorInstance",c);c.on("instanceReady",function(d){var e=d.editor;setTimeout(function(){if(e.element){d.removeListener();e.on("dataReady",function(){b.trigger("dataReady.ckeditor",[e])});e.on("setData",function(a){b.trigger("setData.ckeditor",[e,a.data])});e.on("getData",function(a){b.trigger("getData.ckeditor",[e,a.data])},999);e.on("destroy",function(){b.trigger("destroy.ckeditor",[e])});e.on("save",function(){a(h.form).submit(); |
||||
return!1},null,null,20);if(e.config.autoUpdateElementJquery&&b.is("textarea")&&a(h.form).length){var c=function(){b.ckeditor(function(){e.updateElement()})};a(h.form).submit(c);a(h.form).bind("form-pre-serialize",c);b.bind("destroy.ckeditor",function(){a(h.form).unbind("submit",c);a(h.form).unbind("form-pre-serialize",c)})}e.on("destroy",function(){b.removeData("ckeditorInstance")});b.removeData("_ckeditorInstanceLock");b.trigger("instanceReady.ckeditor",[e]);g&&g.apply(e,[h]);j.resolve()}else setTimeout(arguments.callee, |
||||
100)},0)},null,null,9999)}});var f=new a.Deferred;this.promise=f.promise();a.when.apply(this,i).then(function(){f.resolve()});this.editor=this.eq(0).data("ckeditorInstance");return this}}),CKEDITOR.config.jqueryOverrideVal&&(a.fn.val=CKEDITOR.tools.override(a.fn.val,function(g){return function(d){if(arguments.length){var k=this,i=[],f=this.each(function(){var b=a(this),c=b.data("ckeditorInstance");if(b.is("textarea")&&c){var f=new a.Deferred;c.setData(d,function(){f.resolve()});i.push(f.promise()); |
||||
return!0}return g.call(b,d)});if(i.length){var b=new a.Deferred;a.when.apply(this,i).done(function(){b.resolveWith(k)});return b.promise()}return f}var f=a(this).eq(0),c=f.data("ckeditorInstance");return f.is("textarea")&&c?c.getData():g.call(f)}})))})(window.jQuery); |
@ -0,0 +1,8 @@ |
||||
{ |
||||
"name": "ckeditor", |
||||
"description": "JavaScript WYSIWYG web text editor.", |
||||
"keywords": [ "ckeditor", "fckeditor", "editor", "wysiwyg", "html", "richtext", "text", "javascript" ], |
||||
"authors": "CKSource - Frederico Knabben (http://cksource.com)", |
||||
"license": "http://ckeditor.com/about/license", |
||||
"homepage": "http://ckeditor.com" |
||||
} |
@ -0,0 +1,175 @@ |
||||
/** |
||||
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
|
||||
/** |
||||
* This file was added automatically by CKEditor builder. |
||||
* You may re-use it at any time to build CKEditor again. |
||||
* |
||||
* If you would like to build CKEditor online again |
||||
* (for example to upgrade), visit one the following links: |
||||
* |
||||
* (1) http://ckeditor.com/builder
|
||||
* Visit online builder to build CKEditor from scratch. |
||||
* |
||||
* (2) http://ckeditor.com/builder/e6b8a045f8f984a69463975ca3e6524a
|
||||
* Visit online builder to build CKEditor, starting with the same setup as before. |
||||
* |
||||
* (3) http://ckeditor.com/builder/download/e6b8a045f8f984a69463975ca3e6524a
|
||||
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before. |
||||
* |
||||
* NOTE: |
||||
* This file is not used by CKEditor, you may remove it. |
||||
* Changing this file will not change your CKEditor configuration. |
||||
*/ |
||||
|
||||
var CKBUILDER_CONFIG = { |
||||
skin: 'moono', |
||||
preset: 'full', |
||||
ignore: [ |
||||
'.bender', |
||||
'.DS_Store', |
||||
'.gitignore', |
||||
'.gitattributes', |
||||
'.idea', |
||||
'.mailmap', |
||||
'bender.js', |
||||
'bender-err.log', |
||||
'bender-out.log', |
||||
'dev', |
||||
'node_modules', |
||||
'package.json', |
||||
'README.md', |
||||
'tests' |
||||
], |
||||
plugins : { |
||||
'a11yhelp' : 1, |
||||
'about' : 1, |
||||
'basicstyles' : 1, |
||||
'bidi' : 1, |
||||
'blockquote' : 1, |
||||
'clipboard' : 1, |
||||
'colorbutton' : 1, |
||||
'colordialog' : 1, |
||||
'contextmenu' : 1, |
||||
'dialogadvtab' : 1, |
||||
'div' : 1, |
||||
'elementspath' : 1, |
||||
'enterkey' : 1, |
||||
'entities' : 1, |
||||
'filebrowser' : 1, |
||||
'find' : 1, |
||||
'flash' : 1, |
||||
'floatingspace' : 1, |
||||
'font' : 1, |
||||
'format' : 1, |
||||
'forms' : 1, |
||||
'horizontalrule' : 1, |
||||
'htmlwriter' : 1, |
||||
'iframe' : 1, |
||||
'image' : 1, |
||||
'indentblock' : 1, |
||||
'indentlist' : 1, |
||||
'justify' : 1, |
||||
'language' : 1, |
||||
'link' : 1, |
||||
'list' : 1, |
||||
'liststyle' : 1, |
||||
'magicline' : 1, |
||||
'maximize' : 1, |
||||
'newpage' : 1, |
||||
'pagebreak' : 1, |
||||
'pastefromword' : 1, |
||||
'pastetext' : 1, |
||||
'preview' : 1, |
||||
'print' : 1, |
||||
'removeformat' : 1, |
||||
'resize' : 1, |
||||
'save' : 1, |
||||
'scayt' : 1, |
||||
'selectall' : 1, |
||||
'showblocks' : 1, |
||||
'showborders' : 1, |
||||
'smiley' : 1, |
||||
'sourcearea' : 1, |
||||
'specialchar' : 1, |
||||
'stylescombo' : 1, |
||||
'tab' : 1, |
||||
'table' : 1, |
||||
'tabletools' : 1, |
||||
'templates' : 1, |
||||
'toolbar' : 1, |
||||
'undo' : 1, |
||||
'wsc' : 1, |
||||
'wysiwygarea' : 1 |
||||
}, |
||||
languages : { |
||||
'af' : 1, |
||||
'ar' : 1, |
||||
'bg' : 1, |
||||
'bn' : 1, |
||||
'bs' : 1, |
||||
'ca' : 1, |
||||
'cs' : 1, |
||||
'cy' : 1, |
||||
'da' : 1, |
||||
'de' : 1, |
||||
'el' : 1, |
||||
'en' : 1, |
||||
'en-au' : 1, |
||||
'en-ca' : 1, |
||||
'en-gb' : 1, |
||||
'eo' : 1, |
||||
'es' : 1, |
||||
'et' : 1, |
||||
'eu' : 1, |
||||
'fa' : 1, |
||||
'fi' : 1, |
||||
'fo' : 1, |
||||
'fr' : 1, |
||||
'fr-ca' : 1, |
||||
'gl' : 1, |
||||
'gu' : 1, |
||||
'he' : 1, |
||||
'hi' : 1, |
||||
'hr' : 1, |
||||
'hu' : 1, |
||||
'id' : 1, |
||||
'is' : 1, |
||||
'it' : 1, |
||||
'ja' : 1, |
||||
'ka' : 1, |
||||
'km' : 1, |
||||
'ko' : 1, |
||||
'ku' : 1, |
||||
'lt' : 1, |
||||
'lv' : 1, |
||||
'mk' : 1, |
||||
'mn' : 1, |
||||
'ms' : 1, |
||||
'nb' : 1, |
||||
'nl' : 1, |
||||
'no' : 1, |
||||
'pl' : 1, |
||||
'pt' : 1, |
||||
'pt-br' : 1, |
||||
'ro' : 1, |
||||
'ru' : 1, |
||||
'si' : 1, |
||||
'sk' : 1, |
||||
'sl' : 1, |
||||
'sq' : 1, |
||||
'sr' : 1, |
||||
'sr-latn' : 1, |
||||
'sv' : 1, |
||||
'th' : 1, |
||||
'tr' : 1, |
||||
'tt' : 1, |
||||
'ug' : 1, |
||||
'uk' : 1, |
||||
'vi' : 1, |
||||
'zh' : 1, |
||||
'zh-cn' : 1 |
||||
} |
||||
}; |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,20 @@ |
||||
{ |
||||
"name": "ckeditor/ckeditor", |
||||
"description": "JavaScript WYSIWYG web text editor.", |
||||
"type": "library", |
||||
"keywords": [ "ckeditor", "fckeditor", "editor", "wysiwyg", "html", "richtext", "text", "javascript" ], |
||||
"homepage": "http://ckeditor.com", |
||||
"license": [ "GPL-2.0+", "LGPL-2.1+", "MPL-1.1+" ], |
||||
"authors": [ |
||||
{ |
||||
"name": "CKSource - Frederico Knabben", |
||||
"homepage": "http://cksource.com" |
||||
} |
||||
], |
||||
"support": { |
||||
"issues": "http://dev.ckeditor.com", |
||||
"forum": "http://ckeditor.com/forums", |
||||
"wiki": "http://docs.ckeditor.com", |
||||
"source": "http://github.com/ckeditor/ckeditor-dev" |
||||
} |
||||
} |
@ -0,0 +1,10 @@ |
||||
/** |
||||
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
||||
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/ |
||||
|
||||
CKEDITOR.editorConfig = function( config ) { |
||||
// Define changes to default configuration here. For example:
|
||||
// config.language = 'fr';
|
||||
// config.uiColor = '#AADC6E';
|
||||
}; |
@ -0,0 +1,134 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license |
||||
*/ |
||||
|
||||
body |
||||
{ |
||||
/* Font */ |
||||
font-family: sans-serif, Arial, Verdana, "Trebuchet MS"; |
||||
font-size: 12px; |
||||
|
||||
/* Text color */ |
||||
color: #333; |
||||
|
||||
/* Remove the background color to make it transparent */ |
||||
background-color: #fff; |
||||
|
||||
margin: 20px; |
||||
} |
||||
|
||||
.cke_editable |
||||
{ |
||||
font-size: 13px; |
||||
line-height: 1.6; |
||||
} |
||||
|
||||
blockquote |
||||
{ |
||||
font-style: italic; |
||||
font-family: Georgia, Times, "Times New Roman", serif; |
||||
padding: 2px 0; |
||||
border-style: solid; |
||||
border-color: #ccc; |
||||
border-width: 0; |
||||
} |
||||
|
||||
.cke_contents_ltr blockquote |
||||
{ |
||||
padding-left: 20px; |
||||
padding-right: 8px; |
||||
border-left-width: 5px; |
||||
} |
||||
|
||||
.cke_contents_rtl blockquote |
||||
{ |
||||
padding-left: 8px; |
||||
padding-right: 20px; |
||||
border-right-width: 5px; |
||||
} |
||||
|
||||
a |
||||
{ |
||||
color: #0782C1; |
||||
} |
||||
|
||||
ol,ul,dl |
||||
{ |
||||
/* IE7: reset rtl list margin. (#7334) */ |
||||
*margin-right: 0px; |
||||
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ |
||||
padding: 0 40px; |
||||
} |
||||
|
||||
h1,h2,h3,h4,h5,h6 |
||||
{ |
||||
font-weight: normal; |
||||
line-height: 1.2; |
||||
} |
||||
|
||||
hr |
||||
{ |
||||
border: 0px; |
||||
border-top: 1px solid #ccc; |
||||
} |
||||
|
||||
img.right |
||||
{ |
||||
border: 1px solid #ccc; |
||||
float: right; |
||||
margin-left: 15px; |
||||
padding: 5px; |
||||
} |
||||
|
||||
img.left |
||||
{ |
||||
border: 1px solid #ccc; |
||||
float: left; |
||||
margin-right: 15px; |
||||
padding: 5px; |
||||
} |
||||
|
||||
pre |
||||
{ |
||||
white-space: pre-wrap; /* CSS 2.1 */ |
||||
word-wrap: break-word; /* IE7 */ |
||||
-moz-tab-size: 4; |
||||
-o-tab-size: 4; |
||||
-webkit-tab-size: 4; |
||||
tab-size: 4; |
||||
} |
||||
|
||||
.marker |
||||
{ |
||||
background-color: Yellow; |
||||
} |
||||
|
||||
span[lang] |
||||
{ |
||||
font-style: italic; |
||||
} |
||||
|
||||
figure |
||||
{ |
||||
text-align: center; |
||||
border: solid 1px #ccc; |
||||
border-radius: 2px; |
||||
background: rgba(0,0,0,0.05); |
||||
padding: 10px; |
||||
margin: 10px 20px; |
||||
display: inline-block; |
||||
} |
||||
|
||||
figure > figcaption |
||||
{ |
||||
text-align: center; |
||||
display: block; /* For IE8 */ |
||||
} |
||||
|
||||
a > img { |
||||
padding: 1px; |
||||
margin: 1px; |
||||
border: none; |
||||
outline: 1px solid #0782C1; |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.dialog.add("a11yHelp",function(j){var a=j.lang.a11yhelp,l=CKEDITOR.tools.getNextId(),e={8:a.backspace,9:a.tab,13:a.enter,16:a.shift,17:a.ctrl,18:a.alt,19:a.pause,20:a.capslock,27:a.escape,33:a.pageUp,34:a.pageDown,35:a.end,36:a.home,37:a.leftArrow,38:a.upArrow,39:a.rightArrow,40:a.downArrow,45:a.insert,46:a["delete"],91:a.leftWindowKey,92:a.rightWindowKey,93:a.selectKey,96:a.numpad0,97:a.numpad1,98:a.numpad2,99:a.numpad3,100:a.numpad4,101:a.numpad5,102:a.numpad6,103:a.numpad7,104:a.numpad8, |
||||
105:a.numpad9,106:a.multiply,107:a.add,109:a.subtract,110:a.decimalPoint,111:a.divide,112:a.f1,113:a.f2,114:a.f3,115:a.f4,116:a.f5,117:a.f6,118:a.f7,119:a.f8,120:a.f9,121:a.f10,122:a.f11,123:a.f12,144:a.numLock,145:a.scrollLock,186:a.semiColon,187:a.equalSign,188:a.comma,189:a.dash,190:a.period,191:a.forwardSlash,192:a.graveAccent,219:a.openBracket,220:a.backSlash,221:a.closeBracket,222:a.singleQuote};e[CKEDITOR.ALT]=a.alt;e[CKEDITOR.SHIFT]=a.shift;e[CKEDITOR.CTRL]=a.ctrl;var f=[CKEDITOR.ALT,CKEDITOR.SHIFT, |
||||
CKEDITOR.CTRL],m=/\$\{(.*?)\}/g,p=function(){var a=j.keystrokeHandler.keystrokes,g={},c;for(c in a)g[a[c]]=c;return function(a,c){var b;if(g[c]){b=g[c];for(var h,i,k=[],d=0;d<f.length;d++)i=f[d],h=b/f[d],1<h&&2>=h&&(b-=i,k.push(e[i]));k.push(e[b]||String.fromCharCode(b));b=k.join("+")}else b=a;return b}}();return{title:a.title,minWidth:600,minHeight:400,contents:[{id:"info",label:j.lang.common.generalTab,expand:!0,elements:[{type:"html",id:"legends",style:"white-space:normal;",focus:function(){this.getElement().focus()}, |
||||
html:function(){for(var e='<div class="cke_accessibility_legend" role="document" aria-labelledby="'+l+'_arialbl" tabIndex="-1">%1</div><span id="'+l+'_arialbl" class="cke_voice_label">'+a.contents+" </span>",g=[],c=a.legend,j=c.length,f=0;f<j;f++){for(var b=c[f],h=[],i=b.items,k=i.length,d=0;d<k;d++){var n=i[d],o=n.legend.replace(m,p);o.match(m)||h.push("<dt>%1</dt><dd>%2</dd>".replace("%1",n.name).replace("%2",o))}g.push("<h1>%1</h1><dl>%2</dl>".replace("%1",b.name).replace("%2",h.join("")))}return e.replace("%1", |
||||
g.join(""))}()+'<style type="text/css">.cke_accessibility_legend{width:600px;height:400px;padding-right:5px;overflow-y:auto;overflow-x:hidden;}.cke_browser_quirks .cke_accessibility_legend,{height:390px}.cke_accessibility_legend *{white-space:normal;}.cke_accessibility_legend h1{font-size: 20px;border-bottom: 1px solid #AAA;margin: 5px 0px 15px;}.cke_accessibility_legend dl{margin-left: 5px;}.cke_accessibility_legend dt{font-size: 13px;font-weight: bold;}.cke_accessibility_legend dd{margin:10px}</style>'}]}], |
||||
buttons:[CKEDITOR.dialog.cancelButton]}}); |
@ -0,0 +1,25 @@ |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license |
||||
|
||||
cs.js Found: 30 Missing: 0 |
||||
cy.js Found: 30 Missing: 0 |
||||
da.js Found: 12 Missing: 18 |
||||
de.js Found: 30 Missing: 0 |
||||
el.js Found: 25 Missing: 5 |
||||
eo.js Found: 30 Missing: 0 |
||||
fa.js Found: 30 Missing: 0 |
||||
fi.js Found: 30 Missing: 0 |
||||
fr.js Found: 30 Missing: 0 |
||||
gu.js Found: 12 Missing: 18 |
||||
he.js Found: 30 Missing: 0 |
||||
it.js Found: 30 Missing: 0 |
||||
mk.js Found: 5 Missing: 25 |
||||
nb.js Found: 30 Missing: 0 |
||||
nl.js Found: 30 Missing: 0 |
||||
no.js Found: 30 Missing: 0 |
||||
pt-br.js Found: 30 Missing: 0 |
||||
ro.js Found: 6 Missing: 24 |
||||
tr.js Found: 30 Missing: 0 |
||||
ug.js Found: 27 Missing: 3 |
||||
vi.js Found: 6 Missing: 24 |
||||
zh-cn.js Found: 30 Missing: 0 |
@ -0,0 +1,11 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","ar",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"عام",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page."}, |
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."}, |
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command", |
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."}, |
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"}]}],backspace:"Backspace",tab:"Tab",enter:"Enter",shift:"Shift",ctrl:"Ctrl",alt:"Alt",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",end:"End",home:"Home",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert","delete":"Delete",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1", |
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"إضافة",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"تقسيم",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"فاصلة",dash:"Dash",period:"نقطة",forwardSlash:"Forward Slash", |
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"}); |
@ -0,0 +1,11 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","bg",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"Общо",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page."}, |
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."}, |
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command", |
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."}, |
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"}]}],backspace:"Backspace",tab:"Tab",enter:"Enter",shift:"Shift",ctrl:"Ctrl",alt:"Alt",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",end:"End",home:"Home",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert","delete":"Delete",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1", |
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash", |
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"}); |
@ -0,0 +1,13 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","ca",{title:"Instruccions d'Accessibilitat",contents:"Continguts de l'Ajuda. Per tancar aquest quadre de diàleg premi ESC.",legend:[{name:"General",items:[{name:"Editor de barra d'eines",legend:"Premi ${toolbarFocus} per desplaçar-se per la barra d'eines. Vagi en el següent i anterior grup de barra d'eines amb TAB i SHIFT-TAB. Vagi en el següent i anterior botó de la barra d'eines amb RIGHT ARROW i LEFT ARROW. Premi SPACE o ENTER per activar el botó de la barra d'eines."}, |
||||
{name:"Editor de quadre de diàleg",legend:"Dins d'un quadre de diàleg, premi la tecla TAB per desplaçar-se al següent camp del quadre de diàleg, premi SHIFT + TAB per desplaçar-se a l'anterior camp, premi ENTER per acceptar el quadre de diàleg, premi ESC per cancel·lar el quadre de diàleg. Per els quadres de diàleg que tenen diverses pestanyes, premi ALT + F10 per anar a la llista de pestanyes. Després podrà desplaçar-se a la següent pestanya amb TAB o RIGHT ARROW. Anar a la pestanya anterior amb SHIFT + TAB o LEFT ARROW. Premi SPACE o ENTER per seleccionar la pestanya."}, |
||||
{name:"Editor de menú contextual",legend:"Premi ${contextMenu} o APPLICATION KEY per obrir el menú contextual. Després desplacis a la següent opció del menú amb TAB o DOWN ARROW. Desplacis a l'anterior opció amb SHIFT+TAB o UP ARROW. Premi SPACE o ENTER per seleccionar l'opció del menú. Obri el submenú de l'actual opció utilitzant SPACE o ENTER o RIGHT ARROW. Pot tornar a l'opció del menú pare amb ESC o LEFT ARROW. Tanqui el menú contextual amb ESC."},{name:"Editor de caixa de llista",legend:"Dins d'un quadre de llista, desplacis al següent element de la llista amb TAB o DOWN ARROW. Desplacis a l'anterior element de la llista amb SHIFT + TAB o UP ARROW. Premi SPACE o ENTER per seleccionar l'opció de la llista. Premi ESC per tancar el quadre de llista."}, |
||||
{name:"Editor de barra de ruta de l'element",legend:"Premi ${elementsPathFocus} per anar als elements de la barra de ruta. Desplacis al botó de l'element següent amb TAB o RIGHT ARROW. Desplacis a l'anterior botó amb SHIFT+TAB o LEFT ARROW. Premi SPACE o ENTER per seleccionar l'element a l'editor."}]},{name:"Ordres",items:[{name:"Desfer ordre",legend:"Premi ${undo}"},{name:"Refer ordre",legend:"Premi ${redo}"},{name:"Ordre negreta",legend:"Premi ${bold}"},{name:"Ordre cursiva",legend:"Premi ${italic}"}, |
||||
{name:"Ordre subratllat",legend:"Premi ${underline}"},{name:"Ordre enllaç",legend:"Premi ${link}"},{name:"Ordre amagar barra d'eines",legend:"Premi ${toolbarCollapse}"},{name:"Ordre per accedir a l'anterior espai enfocat",legend:"Premi ${accessPreviousSpace} per accedir a l'enfocament d'espai més proper inabastable abans del símbol d'intercalació, per exemple: dos elements HR adjacents. Repetiu la combinació de tecles per arribar a enfocaments d'espais distants."},{name:"Ordre per accedir al següent espai enfocat", |
||||
legend:"Premi ${accessNextSpace} per accedir a l'enfocament d'espai més proper inabastable després del símbol d'intercalació, per exemple: dos elements HR adjacents. Repetiu la combinació de tecles per arribar a enfocaments d'espais distants."},{name:"Ajuda d'accessibilitat",legend:"Premi ${a11yHelp}"}]}],backspace:"Retrocés",tab:"Tabulació",enter:"Intro",shift:"Majúscules",ctrl:"Ctrl",alt:"Alt",pause:"Pausa",capslock:"Bloqueig de majúscules",escape:"Escape",pageUp:"Pàgina Amunt",pageDown:"Pàgina Avall", |
||||
end:"Fi",home:"Inici",leftArrow:"Fletxa Esquerra",upArrow:"Fletxa Amunt",rightArrow:"Fletxa Dreta",downArrow:"Fletxa Avall",insert:"Inserir","delete":"Eliminar",leftWindowKey:"Tecla Windows Esquerra",rightWindowKey:"Tecla Windows Dreta",selectKey:"Tecla Seleccionar",numpad0:"Teclat Numèric 0",numpad1:"Teclat Numèric 1",numpad2:"Teclat Numèric 2",numpad3:"Teclat Numèric 3",numpad4:"Teclat Numèric 4",numpad5:"Teclat Numèric 5",numpad6:"Teclat Numèric 6",numpad7:"Teclat Numèric 7",numpad8:"Teclat Numèric 8", |
||||
numpad9:"Teclat Numèric 9",multiply:"Multiplicació",add:"Suma",subtract:"Resta",decimalPoint:"Punt Decimal",divide:"Divisió",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Bloqueig Teclat Numèric",scrollLock:"Bloqueig de Desplaçament",semiColon:"Punt i Coma",equalSign:"Símbol Igual",comma:"Coma",dash:"Guió",period:"Punt",forwardSlash:"Barra Diagonal",graveAccent:"Accent Obert",openBracket:"Claudàtor Obert",backSlash:"Barra Invertida", |
||||
closeBracket:"Claudàtor Tancat",singleQuote:"Cometa Simple"}); |
@ -0,0 +1,13 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","cs",{title:"Instrukce pro přístupnost",contents:"Obsah nápovědy. Pro uzavření tohoto dialogu stiskněte klávesu ESC.",legend:[{name:"Obecné",items:[{name:"Panel nástrojů editoru",legend:"Stiskněte${toolbarFocus} k procházení panelu nástrojů. Přejděte na další a předchozí skupiny pomocí TAB a SHIFT-TAB. Přechod na další a předchozí tlačítko panelu nástrojů je pomocí ŠIPKA VPRAVO nebo ŠIPKA VLEVO. Stisknutím mezerníku nebo klávesy ENTER tlačítko aktivujete."},{name:"Dialogové okno editoru", |
||||
legend:"Uvnitř dialogového okna stiskněte TAB pro přesunutí na další pole, stiskněte SHIFT + TAB pro přesun na předchozí pole, stiskněte ENTER pro odeslání dialogu, stiskněte ESC pro jeho zrušení. Pro dialogová okna, která mají mnoho karet stiskněte ALT + F10 pr oprocházení seznamu karet. Pak se přesuňte na další kartu pomocí TAB nebo ŠIPKA VPRAVO. Pro přesun na předchozí stiskněte SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání stránky karet."},{name:"Kontextové menu editoru", |
||||
legend:"Stiskněte ${contextMenu} nebo klávesu APPLICATION k otevření kontextového menu. Pak se přesuňte na další možnost menu pomocí TAB nebo ŠIPKY DOLŮ. Přesuňte se na předchozí možnost pomocí SHIFT+TAB nebo ŠIPKY NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti menu. Podmenu současné možnosti otevřete pomocí MEZERNÍKU nebo ENTER či ŠIPKY DOLEVA. Kontextové menu uzavřete stiskem ESC."},{name:"Rámeček seznamu editoru",legend:"Uvnitř rámečku seznamu se přesunete na další položku menu pomocí TAB nebo ŠIPKA DOLŮ. Na předchozí položku se přesunete SHIFT + TAB nebo ŠIPKA NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti seznamu. Stiskněte ESC pro uzavření seznamu."}, |
||||
{name:"Lišta cesty prvku v editoru",legend:"Stiskněte ${elementsPathFocus} pro procházení lišty cesty prvku. Na další tlačítko prvku se přesunete pomocí TAB nebo ŠIPKA VPRAVO. Na předchozí položku se přesunete pomocí SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání prvku v editoru."}]},{name:"Příkazy",items:[{name:" Příkaz Zpět",legend:"Stiskněte ${undo}"},{name:" Příkaz Znovu",legend:"Stiskněte ${redo}"},{name:" Příkaz Tučné",legend:"Stiskněte ${bold}"},{name:" Příkaz Kurzíva", |
||||
legend:"Stiskněte ${italic}"},{name:" Příkaz Podtržení",legend:"Stiskněte ${underline}"},{name:" Příkaz Odkaz",legend:"Stiskněte ${link}"},{name:" Příkaz Skrýt panel nástrojů",legend:"Stiskněte ${toolbarCollapse}"},{name:"Příkaz pro přístup k předchozímu prostoru zaměření",legend:"Stiskněte ${accessPreviousSpace} pro přístup k nejbližšímu nedosažitelnému prostoru zaměření před stříškou, například: dva přilehlé prvky HR. Pro dosažení vzdálených prostorů zaměření tuto kombinaci kláves opakujte."},{name:"Příkaz pro přístup k dalšímu prostoru zaměření", |
||||
legend:"Stiskněte ${accessNextSpace} pro přístup k nejbližšímu nedosažitelnému prostoru zaměření po stříšce, například: dva přilehlé prvky HR. Pro dosažení vzdálených prostorů zaměření tuto kombinaci kláves opakujte."},{name:" Nápověda přístupnosti",legend:"Stiskněte ${a11yHelp}"}]}],backspace:"Backspace",tab:"Tabulátor",enter:"Enter",shift:"Shift",ctrl:"Ctrl",alt:"Alt",pause:"Pauza",capslock:"Caps lock",escape:"Escape",pageUp:"Stránka nahoru",pageDown:"Stránka dolů",end:"Konec",home:"Domů",leftArrow:"Šipka vlevo", |
||||
upArrow:"Šipka nahoru",rightArrow:"Šipka vpravo",downArrow:"Šipka dolů",insert:"Vložit","delete":"Smazat",leftWindowKey:"Levá klávesa Windows",rightWindowKey:"Pravá klávesa Windows",selectKey:"Vyberte klávesu",numpad0:"Numerická klávesa 0",numpad1:"Numerická klávesa 1",numpad2:"Numerická klávesa 2",numpad3:"Numerická klávesa 3",numpad4:"Numerická klávesa 4",numpad5:"Numerická klávesa 5",numpad6:"Numerická klávesa 6",numpad7:"Numerická klávesa 7",numpad8:"Numerická klávesa 8",numpad9:"Numerická klávesa 9", |
||||
multiply:"Numerická klávesa násobení",add:"Přidat",subtract:"Numerická klávesa odečítání",decimalPoint:"Desetinná tečka",divide:"Numerická klávesa dělení",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num lock",scrollLock:"Scroll lock",semiColon:"Středník",equalSign:"Rovnítko",comma:"Čárka",dash:"Pomlčka",period:"Tečka",forwardSlash:"Lomítko",graveAccent:"Přízvuk",openBracket:"Otevřená hranatá závorka",backSlash:"Obrácené lomítko",closeBracket:"Uzavřená hranatá závorka", |
||||
singleQuote:"Jednoduchá uvozovka"}); |
@ -0,0 +1,11 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","cy",{title:"Canllawiau Hygyrchedd",contents:"Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.",legend:[{name:"Cyffredinol",items:[{name:"Bar Offer y Golygydd",legend:"Pwyswch $ {toolbarFocus} i fynd at y bar offer. Symudwch i'r grŵp bar offer nesaf a blaenorol gyda TAB a SHIFT-TAB. Symudwch i'r botwm bar offer nesaf a blaenorol gyda SAETH DDE neu SAETH CHWITH. Pwyswch SPACE neu ENTER i wneud botwm y bar offer yn weithredol."},{name:"Deialog y Golygydd",legend:"Tu mewn i'r deialog, pwyswch TAB i fynd i'r maes nesaf ar y deialog, pwyswch SHIFT + TAB i symud i faes blaenorol, pwyswch ENTER i gyflwyno'r deialog, pwyswch ESC i ddiddymu'r deialog. Ar gyfer deialogau sydd â thudalennau aml-tab, pwyswch ALT + F10 i lywio'r tab-restr. Yna symudwch i'r tab nesaf gyda TAB neu SAETH DDE. Symudwch i dab blaenorol gyda SHIFT + TAB neu'r SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis y dudalen tab."}, |
||||
{name:"Dewislen Cyd-destun y Golygydd",legend:"Pwyswch $ {contextMenu} neu'r ALLWEDD 'APPLICATION' i agor y ddewislen cyd-destun. Yna symudwch i'r opsiwn ddewislen nesaf gyda'r TAB neu'r SAETH I LAWR. Symudwch i'r opsiwn blaenorol gyda SHIFT + TAB neu'r SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn ddewislen. Agorwch is-dewislen yr opsiwn cyfredol gyda SPACE neu ENTER neu SAETH DDE. Ewch yn ôl i'r eitem ar y ddewislen uwch gydag ESC neu SAETH CHWITH. Ceuwch y ddewislen cyd-destun gydag ESC."}, |
||||
{name:"Blwch Rhestr y Golygydd",legend:"Tu mewn y blwch rhestr, ewch i'r eitem rhestr nesaf gyda TAB neu'r SAETH I LAWR. Symudwch i restr eitem flaenorol gyda SHIFT + TAB neu SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn o'r rhestr. Pwyswch ESC i gau'r rhestr."},{name:"Bar Llwybr Elfen y Golygydd",legend:"Pwyswch ${elementsPathFocus} i fynd i'r bar llwybr elfennau. Symudwch i fotwm yr elfen nesaf gyda TAB neu SAETH DDE. Symudwch i fotwm blaenorol gyda SHIFT + TAB neu SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis yr elfen yn y golygydd."}]}, |
||||
{name:"Gorchmynion",items:[{name:"Gorchymyn dadwneud",legend:"Pwyswch ${undo}"},{name:"Gorchymyn ailadrodd",legend:"Pwyswch ${redo}"},{name:"Gorchymyn Bras",legend:"Pwyswch ${bold}"},{name:"Gorchymyn italig",legend:"Pwyswch ${italig}"},{name:"Gorchymyn tanlinellu",legend:"Pwyso ${underline}"},{name:"Gorchymyn dolen",legend:"Pwyswch ${link}"},{name:"Gorchymyn Cwympo'r Dewislen",legend:"Pwyswch ${toolbarCollapse}"},{name:"Myned i orchymyn bwlch ffocws blaenorol",legend:"Pwyswch ${accessPreviousSpace} i fyned i'r \"blwch ffocws sydd methu ei gyrraedd\" cyn y caret, er enghraifft: dwy elfen HR drws nesaf i'w gilydd. AIladroddwch y cyfuniad allwedd i gyrraedd bylchau ffocws pell."}, |
||||
{name:"Ewch i'r gorchymyn blwch ffocws nesaf",legend:"Pwyswch ${accessNextSpace} i fyned i'r blwch ffocws agosaf nad oes modd ei gyrraedd ar ôl y caret, er enghraifft: dwy elfen HR drws nesaf i'w gilydd. Ailadroddwch y cyfuniad allwedd i gyrraedd blychau ffocws pell."},{name:"Cymorth Hygyrchedd",legend:"Pwyswch ${a11yHelp}"}]}],backspace:"Backspace",tab:"Tab",enter:"Enter",shift:"Shift",ctrl:"Ctrl",alt:"Alt",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down", |
||||
end:"End",home:"Home",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert","delete":"Delete",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point", |
||||
divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"}); |
@ -0,0 +1,11 @@ |
||||
/* |
||||
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/ |
||||
CKEDITOR.plugins.setLang("a11yhelp","da",{title:"Tilgængelighedsinstrukser",contents:"Onlinehjælp. For at lukke dette vindue klik ESC",legend:[{name:"Generelt",items:[{name:"Editor værktøjslinje",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page."}, |
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."}, |
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Kommandoer",items:[{name:"Fortryd kommando",legend:"Klik på ${undo}"},{name:"Gentag kommando",legend:"Klik ${redo}"},{name:" Bold command",legend:"Klik ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command", |
||||
legend:"Klik ${underline}"},{name:" Link command",legend:"Klik ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."}, |
||||
{name:" Accessibility Help",legend:"Kilk ${a11yHelp}"}]}],backspace:"Backspace",tab:"Tab",enter:"Enter",shift:"Shift",ctrl:"Ctrl",alt:"Alt",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",end:"End",home:"Home",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert","delete":"Delete",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1", |
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash", |
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"}); |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue