X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=application%2Fviews%2Fvideo%2Fwatch_view.php;h=4477f8fe943aaf1721e705257ed288e1cd82bc70;hb=66dc2204a919e2c29b2aa9330ea18026d58540d9;hp=b5f7eea52b865db1c86b66b94ed013b5de512287;hpb=edac3c0e2d7251d0223cd8809f12fbfcb1eac8d1;p=living-lab-site.git diff --git a/application/views/video/watch_view.php b/application/views/video/watch_view.php index b5f7eea..4477f8f 100644 --- a/application/views/video/watch_view.php +++ b/application/views/video/watch_view.php @@ -3,80 +3,107 @@ siteUrl = ''; -
- - -

Invalid URL .

-

Did you mean - ?

- -

Invalid ID in URL.

- +
+ + +

Invalid URL .

+

Did you mean + ?

+ +

Invalid ID in URL.

+ + + + +

+ +
+ - - -

- -
- +
+
+ +
+ + @@ -91,15 +118,8 @@ }); // Switch video plugin facilities - $('#video-widget-tabs').tabs(); /*{ - ajaxOptions: { - type: "POST", - data: { url: "" }, - error: function(xhr, status, index, anchor) { - $(anchor.hash).html('Could not load the video plugin.'); - } - } - });*/ + $('#video-widget-tabs') + .tabs(); $('#switch-to-ns-html5') .click(function() { $('#video-widget') @@ -110,23 +130,133 @@ $('#video-widget') .nsvideo('type', 'ns-vlc'); }); - + // Video widget - $('#video-widget').nsvideo({ - type: "", - definition: - "", - src: { - - } - }); + $('#video-widget') + .nsvideo({ + type: "", + src: , + + showState: false, + + minWidth: 640, + maxWidth: 1024, + initialDuration: "", + + resize: function() { + $('#video-widget-tabs') + .css('width', $('#video-widget').css('width')); + } + }); + + $('.link-vote') + .click(function(event) { + var user_id = ""; + var action, idOutput; + if ($(this).data('action') == 'like') + { + var action = 'like'; + var idOutput = '#video-likes'; + } + else + { + var action = 'dislike'; + var idOutput = '#video-dislikes'; + } + //alert(action + " " + user_id); + + event.preventDefault(); + + if (user_id.length != 0) + { + $.ajax({ + type: "GET", + url: "/" + + action + + "", + data: {t: ""+Math.random()}, + dataType: "text", + success: function(text) { + if (text) + $(idOutput).html(text); + else + alert('lang->line('ui_msg_repeated_action_restriction') ?>'); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); + + $('#link-like') + .click(function() { + user_id = ""; + + if (user_id) + { + $.ajax({ + type: "GET", + url: "", + dataType: "text", + success: function(text) { + if (text) + $('#video-likes').html(text); + else + alert('lang->line('ui_msg_repeated_action_restriction') ?>'); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); + $('#link-dislike') + .click(function() { + user_id = ""; + + if (user_id) + { + $.ajax({ + type: "GET", + url: "", + data: {t: ""+Math.random()}, + dataType: "text", + success: function(text) { + $('#video-dislikes').html(text); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); + + $('#video-info-details').hide(); + + $('#a-show-info-details') +// .button({ +// icons: { +// primary: 'ui-icon-triangle-1-s' +// }, +// text: false +// }) + .click(function(event) { + event.preventDefault(true); + $('#video-shorted-description').toggle(); + $('#video-info-details').fadeToggle(); + + //console.log($(this).button('option', 'icons')); + if ($(this).data('val') == 'more') + { + $(this).data('val', 'less'); + $(this).html('lang->line('video_show_less') ?>'); + } + else + { + $(this).data('val', 'more'); + $(this).html('lang->line('video_show_more') ?>'); + } + }); }); \ No newline at end of file