Files
website/_includes/feature-dialog.md
T
Andrew Chen 4ca2f4e738 Add deprecation tag (#3922)
* Add deprecation tag

* match docsContent styling in dialog
2017-05-26 16:59:29 -07:00

867 B

{{ dialog_title }}

{{ 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 %}