58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?php
|
|
echo("
|
|
<a href=\"#\" class=\"button_right zamknij\" title=\"Zamknij okno\">X</a>
|
|
<h1>Kopie robocze</h1>
|
|
<script type=\"text/javascript\">
|
|
<!--
|
|
$(document).ready(
|
|
function()
|
|
{
|
|
$('div.podswietl').click(
|
|
function() {
|
|
if(confirm('Wczytać temat oraz treść do formularza tworzenia wiadomości ?')==true)
|
|
{
|
|
$('input[name=nazwa]').val($(this).find('span.temat').html());
|
|
tinyMCE.get('tresc').setContent($(this).find('span.tresc').html());
|
|
$('#zakryjcontent').scrollTop(0);
|
|
$('.zamknij').click();
|
|
}
|
|
return false;
|
|
}
|
|
);
|
|
|
|
$('div.podswietl').keypress(
|
|
function (event) {
|
|
if (event.which == 13) {
|
|
$(event.target).click();
|
|
}
|
|
}
|
|
);
|
|
|
|
$('div.podswietl button.usun').click(
|
|
function() {
|
|
if(confirm('Czy na pewno usunąć kopie roboczą ?')==true)
|
|
{
|
|
alert(this.parentElement.tabIndex);
|
|
$('#zakryjcontent').scrollTop(0);
|
|
$('.zamknij').click();
|
|
}
|
|
return false;
|
|
}
|
|
);
|
|
}
|
|
);
|
|
//-->
|
|
</script>
|
|
");
|
|
|
|
|
|
echo("
|
|
<div class=\"podswietl komorka_biala\" style=\"padding:10px; margin-bottom:10px; border: 1px solid #aaa; border-radius: 4px;\" tabindex=\"0\">
|
|
<span class=\"tresc\"><p>Test</p></span>
|
|
<br/><br/>
|
|
Temat: <strong><span class=\"temat\">Test</span></strong><br/>
|
|
Zapisano: <strong>wtorek, 10 lutego 2026, godzina 14:16:13</strong>
|
|
<button style=\"float: right;\" class=\"usun\">Usuń</button>
|
|
</div>
|
|
");
|
|
?>
|