copy current state of medienstaatsvertrag.org, to be verified

This commit is contained in:
Milan
2017-12-18 10:58:50 +01:00
parent 8b35e7c5c2
commit 69e5d0e4c6
401 changed files with 74197 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
var region='<TMPL_VAR loc.region>';
function edit_studio(name){
if ($('#edit_'+name).css('display')=='none'){
$('#view_'+name).hide();
$('#edit_'+name).show();
}else{
cancel_edit_studio(name);
}
return false;
}
function add_studio(){
$('.editor').hide();
$('#edit_new').show();
return false;
}
function cancel_edit_studio(name){
$('#edit_'+name).hide();
$('#view_'+name).show();
return false;
}