29 lines
841 B
Markdown
29 lines
841 B
Markdown
|
<a href="#" id="feature-state-dialog-link" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-newwin"></span>{{ dialog_title }}</a>
|
||
|
<div id="feature-state-dialog" title="{{ dialog_title }}">
|
||
|
{{ dialog_content | markdownify }}
|
||
|
</div>
|
||
|
{% raw %}<script>
|
||
|
$(function(){
|
||
|
|
||
|
$( "#feature-state-dialog" ).dialog({
|
||
|
autoOpen: false,
|
||
|
width: {% endraw %}{{ dialog_width | default: "600" }}{% raw %},
|
||
|
buttons: [
|
||
|
{
|
||
|
text: "Ok",
|
||
|
click: function() {
|
||
|
$( this ).dialog( "close" );
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
});
|
||
|
|
||
|
// Link to open the dialog
|
||
|
$( "#feature-state-dialog-link" ).click(function( event ) {
|
||
|
$( "#feature-state-dialog" ).dialog( "open" );
|
||
|
event.preventDefault();
|
||
|
});
|
||
|
|
||
|
});
|
||
|
</script>{% endraw %}
|