fix export annotations dialog

This commit is contained in:
rolux 2014-11-01 14:45:33 +00:00
parent f4779195a2
commit 9881884469

View file

@ -34,8 +34,7 @@ pandora.ui.exportAnnotationsDialog = function(options) {
change: function() {
updateStatus();
that.enableButton('export');
!$link && addLink();
updateLink();
!$link ? addLink() : updateLink();
}
})
.appendTo($content),
@ -100,10 +99,10 @@ pandora.ui.exportAnnotationsDialog = function(options) {
function addLink() {
var $button = $(Ox.last(that.find('.OxButton')))
updateLink();
$button.wrap($('<a>'));
// On wrap, a reference to the link would *not* be the link in the DOM
$link = $($button.parent());
updateLink();
}
function updateLink() {
@ -141,4 +140,4 @@ pandora.ui.exportAnnotationsDialog = function(options) {
return that;
};
};