$.blockUI({message: 'Ćadowanie...'});
}
setTimeout(function() {
- html2xml({
- xml: serializer.serializeToString($('#html-view div').get(0)),
+ html2text({
+ element: $('#html-view div').get(0),
success: function(text) {
editor.setCode(text);
if (!dontBlock) {
var serializer = new XMLSerializer();
- html2xml({
- xml: serializer.serializeToString($box[0]),
- inner: true,
+ html2text({
+ element: $box[0],
+ stripOuter: true,
success: function(text) {
$('textarea', $overlay).val($.trim(text));
xml2html({
xml: '<' + nodeName + '>' + insertedText + '</' + nodeName + '>',
success: function(element) {
- $box.html($(element).html());
+ $origin.html($(element).html());
$overlay.remove();
},
error: function(text) {
if (!editable.hasClass('active')) {
editable.addClass('active').append(button);
}
+ if (editable.is('.annotation-inline-box')) {
+ $('*[x-annotation-box]', editable)
+ .css({position: 'absolute', left: event.clientX - editable.offset().left + 5, top: event.clientY - editable.offset().top + 5})
+ .show();
+ } else {
+ $('*[x-annotation-box]').hide();
+ }
});
$('.motyw').live('click', function() {
+'<td>'+ this[1]+'</td></tr>')
});
$.unblockUI();
- callback();
+ if(callback) callback();
}
});
};
parserConfig: {
useHTMLKludges: false
},
- iframeClass: 'xml-iframe',
+ iframeClass: 'xml-iframe',
textWrapping: true,
- /* lineNumbers: true, */
+ lineNumbers: true,
+ width: "100%",
tabMode: 'spaces',
indentUnit: 0,
initCallback: function(editor) {
$('.vsplitbar').click(function() {
if ($('#sidebar').width() == 0) {
$('#sidebar').width(480).css({right: 0}).show();
- $('#source-editor, #simple-editor').css({right: 495});
+ $('#editor .editor').css({right: 495});
$('.vsplitbar').css({right: 480}).addClass('active');
} else {
$('#sidebar').width(0).hide();
- $('#source-editor, #simple-editor').css({right: 15});
+ $('#editor .editor').css({right: 15});
$('.vsplitbar').css({right: 0}).removeClass('active');
}
$(window).resize();