* mdd_styles.css: Modifies the colors

used for the markdown toolbar,
in order to see the button images
built in black on transparent. (Black theme)

* Edit.aspx: Makes resizable the Markdown editor textarea

* EventPub.aspx: Code formatting

* Web.csproj: Fixes the Mardown styles deployment.
This commit is contained in:
Paul Schneider 2015-06-05 17:40:25 +02:00
commit 8447f15968
4 changed files with 203 additions and 203 deletions

View file

@ -22,7 +22,7 @@
<br/>
<%= Html.LabelFor(model => model.Content) %>:<br/>
<div class="mdd_toolbar"></div>
<%= Html.TextArea( "Content" , new { @class="mdd_editor", @rows="15" }) %>
<%= Html.TextArea( "Content" , new { @class="mdd_editor"}) %>
<div class="mdd_resizer"></div>
<div class="mdd_preview"></div>
<%= Html.ValidationMessage("Content", "*") %>
@ -43,10 +43,11 @@
<script>
$(document).ready(function () {
$("textarea.mdd_editor").MarkdownDeep({
help_location: "/Scripts/html/mdd_help.htm",
disableTabHandling:true
});
disableTabHandling:false
});});
</script>
</asp:Content>