PluginProbe
FV Player 8 / trunk
FV Player 8 vtrunk
trunk 8.0.18 8.0.19 8.0.20 8.0.21 8.0.25 8.0.27 8.1 8.1.3
fv-player / js / list-table.js

list-table.js in FV Player 8 trunk, at js/list-table.js

21 lines 1006 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery( function($) {
2 $(document).on('click','.fv_player_splash_list_preview', function() {
3 fv_player_editor.set_current_video_to_edit( $(this).parents('.thumbs').find('.fv_player_splash_list_preview').index(this) );
4 $(this).parents('tr').find('.fv-player-edit').eq(0).trigger('click');
5 });
6
7 $(document).on('click','.column-shortcode input', function() {
8 $(this).select();
9 });
10
11 $(document).on('click', '[data-fv-player-editor-export-overlay-copy]', function() {
12 var button = this;
13 fv_player_clipboard( $(button).closest('.fv-player-editor-overlay').find('[name=fv_player_copy_to_clipboard]').val(), function() {
14 fv_player_editor.overlay_notice( button, 'Text Copied To Clipboard!', 'success', 3000 );
15 }, function() {
16 fv_player_editor.overlay_notice( button, '<strong>Error copying text into clipboard!</strong><br />Please copy the content of the above text area manually by using CTRL+C (or CMD+C on MAC).', 'error' );
17 });
18
19 return false;
20 });
21 });