forked from External/greenlight
		
	Fix clicking buttons inside popovers
They would work only occasionally because of the way bootstrap handles popovers with trigger:focus. Had to change to trigger:click and manually close the popovers when clicking outside of them or in buttons marked to close popovers.
This commit is contained in:
		@@ -43,10 +43,10 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
<div hidden class="hidden-elements">
 | 
			
		||||
  <div class="delete-popover-body">
 | 
			
		||||
    <button type="button" class="btn btn-danger recording-delete">
 | 
			
		||||
    <button type="button" class="btn btn-danger recording-delete" data-dismiss="popover">
 | 
			
		||||
      <%= t('yes') %>
 | 
			
		||||
    </button>
 | 
			
		||||
    <button type="button" class="btn btn-default">
 | 
			
		||||
    <button type="button" class="btn btn-default" data-dismiss="popover">
 | 
			
		||||
      <%= t('no') %>
 | 
			
		||||
    </button>
 | 
			
		||||
  </div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user