</button>
<button class="zoom-in">Powiększ</button>
<button class="zoom-out">Pomniejsz</button>
- <button class="change-gallery">Galeria</button>
+ {% if request.user.is_staff %}
+ <button class="change-gallery">Opcje</button>
+ {% endif %}
<div class="toolbar-end"> </div>
</div>
+ {% if request.user.is_staff %}
<div class="toolbar" id="change-gallery-toolbar">
<input type="text" value="" class="chosen-gallery" />
<button class="change-gallery-ok">Zmień galerię</button>
<button class="change-gallery-cancel">Anuluj</button>
<div class="toolbar-end"> </div>
</div>
+ {% endif %}
<div class="gallery-image">
<img src="" />
</div>
});
$('.change-gallery', element).click(function() {
$('.chosen-gallery').val($('#document-meta .gallery').html() || '/platforma/gallery/');
- $('.gallery-image').animate({top: 53}, 200);
+ $('.gallery-image').animate({top: 60}, 200);
$('.chosen-gallery').focus();
});
$('.change-gallery-ok', element).click(function() {
}
$('#document-meta .gallery').html($('.chosen-gallery').val());
updateGallery($('.chosen-gallery').val());
- $('.gallery-image').animate({top: 27}, 200);
+ $('.gallery-image').animate({top: 30}, 200);
});
$('.change-gallery-cancel', element).click(function() {
- $('.gallery-image').animate({top: 27}, 200);
+ $('.gallery-image').animate({top: 30}, 200);
});
$('.gallery-image img', element).load(function() {
element.data('images', data);
pn.val(1);
pn.change();
- $('img', element).show();
+ $('.gallery-image img', element).show();
},
error: function(data) {
element.data('images', []);
pn.val(1);
pn.change();
- $('img', element).hide();
+ $('.gallery-image img', element).hide();
}
});
}
return true;
}
+
+ var ANNOT_ALLOWED = ['wyroznienie'];
+
+ function html2plainText(fragment) {
+ var text = "";
+
+ $(fragment.childNodes).each(function() {
+ if(this.nodeType == 3) // textNode
+ text += this.nodeValue;
+ else if (this.nodeType == 1
+ && $.inArray($(this).attr('x-node'), ANNOT_ALLOWED) != -1 ){
+ text += html2plainText(this);
+ }
+ });
+
+ return text;
+ }
function addAnnotation()
{
return false;
}
- var text = range.toString();
+ // BUG #273 - selected text can contain themes, which should be omited from
+ // defining term
+ var text = html2plainText( range.cloneContents() );
+
var tag = $('<span></span>');
range.collapse(false);
range.insertNode(tag[0]);