ef2c0920d3
* Add feature state template * tweak css * change wording * apply wording changes to alpha and beta * tweak dialog css * tweak code highlighting * tweak dialog style * set for_k8s_version default * tweak dialog ul * make init containers 1.5 beta for now * set default dialog width * revert a:visited color * force code style * simplify copy for alpha, beta, stable * tweak code style * fix beta dialog title * fix dialog link a code * remaining tweaks * set a:visited color * Address Steve's feedback * rename dialog.md to feature-dialog.md * remove bold from additional feature state text
841 B
841 B
{{ dialog_content | markdownify }}
{% 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 %}