Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Merge branch '0353-UploadDialogClosing-zach_mullen'
Browse files Browse the repository at this point in the history
* 0353-UploadDialogClosing-zach_mullen:
  BUG: refs #0353. Don't close upload dialog when it loses focus
  • Loading branch information
zachmullen committed Dec 1, 2011
2 parents 7002c6f + d68d3ad commit 25cb6bc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions core/public/js/common/common.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,13 @@ function createAction(node)
event: 'click',
solo: true // Only show one tooltip at a time
},
hide: 'unfocus',
hide: {
event: false
},
style: {
classes: 'uploadqtip ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded',
tip: false
classes: 'uploadqtip ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
}
})
});

$('a.sharingLink').click(function(){
loadDialog("sharing"+$(this).attr('type')+$(this).attr('element'),"/share/dialog?type="+$(this).attr('type')+'&element='+$(this).attr('element'));
Expand Down

0 comments on commit 25cb6bc

Please sign in to comment.