|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>D'n'd</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/basic.css"/>
|
|
|
|
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
|
|
|
|
<script type="text/javascript" src="js/jquery-ui-1.8.9.custom.min.js"></script>
|
|
|
|
<script type="text/javascript" src="js/script.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
var lang = ""; //locale language
|
|
|
|
if(window.sankore){
|
|
|
|
lang = sankore.locale().substr(0,2);
|
|
|
|
} else
|
|
|
|
lang = "en";
|
|
|
|
if(lang == "en"){
|
|
|
|
sankore.enableDropOnWidget(false);
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
returnStatus(lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
function returnStatus(lang){
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url:'locales/' + lang + '/index.html',
|
|
|
|
statusCode: {
|
|
|
|
404: function() {
|
|
|
|
start();
|
|
|
|
},
|
|
|
|
200: function(){
|
|
|
|
window.location.href = 'locales/' + lang + '/index.html';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
//here you can put your code
|
|
|
|
if(window.sankore)
|
|
|
|
sankore.enableDropOnWidget();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!--<div class="dnd_container">
|
|
|
|
<div class="dnd_1" id="dnd_1" ondragenter="return false;" ondragleave="$(this).css('border-color','#ccc'); return false;" ondragover="$(this).css('border-color','orange'); return false;" ondrop="$(this).css('border-color','#ccc'); return onDropTarget1(event);">Drop the item here ...</div>
|
|
|
|
<div class="dnd_2" id="dnd_2" ondragenter="return false;" ondragleave="$(this).css('border-color','#ccc'); return false;" ondragover="$(this).css('border-color','orange'); return false;" ondrop="$(this).css('border-color','#ccc'); return onDropTarget2(event);">Drop the item here ...</div>
|
|
|
|
</div>
|
|
|
|
<div class='black_overlay' id='fade'></div>
|
|
|
|
<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">открыть</a></p>
|
|
|
|
<div id="light" class="white_content">
|
|
|
|
Содержание<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">закрыть</a></div>-->
|
|
|
|
<div class="toggle_mode">
|
|
|
|
<div style="width: 50%; height: 100%; float: left;">
|
|
|
|
<div id="display" style="float: right; width: 90px; cursor: pointer;" class="selected">
|
|
|
|
<div id="display_img" style="float: right;" class="green_point"></div>
|
|
|
|
<div id="display_text" style="float: right;">Display</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="width: 50%; height: 100%; float: right;">
|
|
|
|
<div id="edit" style="float: left; width: 90px; cursor: pointer;">
|
|
|
|
<div id="edit_img" style="float: left;" class="red_point"></div>
|
|
|
|
<div id="edit_text" style="float: left;">Edit</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="width: 100%; height: 25px;"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|