forked from hummypkg/webif
57d4b60a8d
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif@168 2a923420-c742-0410-a762-8d5b09965624
29 lines
671 B
Plaintext
29 lines
671 B
Plaintext
puts {
|
|
<div id=dialogue></div>
|
|
<script type=text/javascript>
|
|
$(document).ready(function() {
|
|
var $dialog = $('#dialogue').dialog({
|
|
title: "Programme Details",
|
|
modal: false,
|
|
autoOpen: false,
|
|
height: 500,
|
|
width: 700,
|
|
show: 'scale',
|
|
hide: 'fade',
|
|
draggable: true,
|
|
resizable: true,
|
|
buttons: { "Close":
|
|
function() {$(this).dialog('close');}},
|
|
close: function(e,u) { $('#dialogue').empty().html('<img src="/img/loading.gif" alt="loading">'); }
|
|
});
|
|
$('a.event').click(function(e) {
|
|
e.preventDefault();
|
|
var url = $(this).attr('href');
|
|
$('#dialogue').load(url + '&bare=1');
|
|
$dialog.dialog('open');
|
|
});
|
|
});
|
|
</script>
|
|
}
|
|
|