web/static/ldt/js/embed_popup.js
changeset 71 165d249eecc9
parent 70 8e3281bcebc9
child 72 47e0f0eef1cc
--- a/web/static/ldt/js/embed_popup.js	Wed Apr 20 11:29:59 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-var display_state = "player";
-
-function toggle_display() {
-	$j.each(["player","seo_body","seo_meta","links"], function(i,display_str) {
-
-		var div_selector = "#"+display_str+"_code";
-		if(display_str == display_state) {
-			$j(div_selector).show();
-		}
-		else {
-			$j(div_selector).hide();
-		}
-	});
-}
-
-$j(document).ready(function(){
-	
-	toggle_display();
-	
-	$j('.ldt_json_link').click(function(e) {
-    	e.preventDefault();
- 		link = $j(e.target);
- 		$j("#res_link_{{player_id}}").load(link.attr("href"));
- 		$j("#res_link_{{player_id}}").show();
- 		return false;
-    });
-
-    $j('#player_button').click(function(e) {
-    	display_state = "player";
-    	toggle_display();
-    });
-    $j('#seo_body_button').click(function(e) {
-    	display_state = "seo_body";
-    	toggle_display();
-    });
-    $j('#seo_meta_button').click(function(e) {
-    	display_state = "seo_meta";
-    	toggle_display();
-    });
-    $j('#links_button').click(function(e) {
-    	display_state = "links";
-    	toggle_display();
-    });
-
-   $j("#copy_button").click(function(e) {
- 	   alert($j("#"+display_state+"_code").html());
-   });	 	    
-    
-});