button tooltips

This commit is contained in:
Zachary Chai
2017-02-14 18:11:32 -05:00
parent 7d227fd383
commit fa1bb0683e
5 changed files with 16 additions and 7 deletions

View File

@ -86,7 +86,7 @@ class @Recordings
str = ''
if row.published
if data.length == 1
str = '<a class="btn btn-default" href="'+data[0].url+'" target="_blank"><i class="fa fa-play-circle"></i></a>'
str = '<a class="btn btn-default play-tooltip" href="'+data[0].url+'" target="_blank"><i class="fa fa-play-circle"></i></a>'
else
for d in data
str += '<a href="'+d.url+'" target="_blank">'+d.type_i18n+'</a> '
@ -137,6 +137,14 @@ class @Recordings
};
$('#recordings').tooltip(options)
options.selector = '.visibility-tooltip'
options.title = I18n.change_visibility
$('#recordings').tooltip(options)
options.selector = '.play-tooltip'
options.title = I18n.play_recording
$('#recordings').tooltip(options)
$(document).one "turbolinks:before-cache", =>
@getTable().api().clear().draw().destroy()
@ -209,7 +217,7 @@ class @Recordings
for key in [0...recording_names.length]
output[recording_names[key]] = recording_names[key]
PreviousMeetings.add(value for key, value of output)
# setup click handlers for the action buttons
setupActionHandlers: ->