HEX
Server: Apache/2.4.49 (FreeBSD) OpenSSL/1.0.2s-freebsd PHP/5.6.36
System: FreeBSD hosting.icon.bg 11.3-RELEASE-p13 FreeBSD 11.3-RELEASE-p13 #0: Tue Sep 1 06:56:51 UTC 2020 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
User: ftpuser (1002)
PHP: 5.6.36
Disabled: NONE
Upload Files
File: /hosting/kak.bg/web/wp-content/themes/social_play/js/profile_script.js
/*!
 * Socialplay v.1.0.0
 * Copyright 2012 wpnukes.com
 * 
 */

jQuery(document).ready( function($){

	"use strict";
	$('.video-thumb').mouseover( function(){
		var thumbHeight	= $('img.thumb', this).height() -20;
		$('.thumb-hover span',this).css({'height':thumbHeight});
	});
	
	/*** Open video on clicking video thumb ***/
	$('.vid-play').click( function(e){
		$(this).children('iframe').css('display','block');
		e.preventDefault();
	});
	
	$('.tabbable').tabs();
	

	
	/*** Dialog Script ***/
	$( "#dialog-load, #dialog-editProfile, #dialog-addPlaylist, #dialog-uploadVideo, #dialog-advancedSettings" ).dialog({
		autoOpen: false,
		draggable: false,
		show: {
			effect: "drop",
			direction: "left",
			duration: 300
		},
		hide: {
			effect: "drop",
			direction: "right",
			duration: 300
		}
	});
		
	
}); // document ready function ends //