* BBCodeHelper.cs: usage of the "hidden" css class

to block/unblock  "show/hide" buttons 

* App.master: Javascript to block/unblock "show/hide" buttons 

* style.css: the hidden css class

* Estimate.aspx: jQuery moved to the default master page
This commit is contained in:
Paul Schneider 2015-03-04 18:26:39 +01:00
commit c77018c616
4 changed files with 17 additions and 7 deletions

View file

@ -268,6 +268,7 @@ namespace Yavsc.Helpers
TagBuilder aside = new TagBuilder ("aside");
aside.InnerHtml = ttb.ToString ();
aside.AddCssClass ("bshpanel");
aside.AddCssClass ("hidden");
bshd.InnerHtml = header.ToString()+aside.ToString();
return bshd.ToString ();