mattscotty

Results 16 comments of mattscotty

not sure if this is the same issue, but ive noticed that that sometimes after dragging, labels end up the wrong way around; ![untitled](https://f.cloud.github.com/assets/2116258/2160330/8a736c9c-94b6-11e3-97ad-52658590f2d3.png)

@MaxwellDAssistek have you tried adding "use strict";? This solved my similar issue, see ; #299 / #334

Agree, my initial test used the following; ``` Uglify.Html(File.ReadAllText(xmlFile.FullName), new NUglify.Html.HtmlSettings { RemoveAttributeQuotes = false, RemoveOptionalTags = false }).Code ``` The main issue I encountered was that tag names were...

Done; [Add ability to disable tags being converted to lower case in HtmlSettings](https://github.com/trullock/NUglify/issues/311) Thanks

I am using the HTML minifier with the following settings (in C#); ``` string htmlCode = Uglify.Html(System.IO.File.ReadAllText(fileName)).Code; string newFileName = fileName.Replace(".html", ".min.html"); File.WriteAllText(newFileName, htmlCode); ```

I think you're correct in that the browsers can handle it, it's knockout that doesn't like it. I think the fix is a specific check for knockout if statement around...

This is more of an issue than I thought. For showing / hiding columns we can use CSS rather than ko if statement as a workaround. However, this also affects...

Fair enough, I will try to make some time to investigate a PR, thank you. In the meantime, which is the HtmlSettings setting I am looking for to disable this...

> Otherwise, I'm not really sure how much NUglify should know or care about KO, its one of many arbitrary "hacks" that sit atop HTML. > > I won't reject...