Chris Graham
Chris Graham
Columnizer borks adsense really badly. Actually it crashes IE7 completely, and crashes a tab process on IE8. After a few hours of debugging this and trying various patches, I have...
If some text is split mid-paragraph/mid-sentence, it is a nice little touch to add an "mdash" entity at the split point, to make it clear to the reader what has...
It assumes you only have 1 of them. But if you have a sequence, it won't work. I have adapted the code to remove as many as there are. ```...
Suggest automatically stripping br's with this... ``` $(this).find('br').addClass('removeiflast').addClass('removeiffirst'); ```
Solved via a simple new line of code ``` $(this).find('table, thead, tbody, tr, th, td, li').addClass('dontend'); ``` just before ``` return this.each(function() { ```
Solved via a simple new line of code ``` $(this).find('h1, h2, h3, h4, h5, h6').addClass('dontend'); ``` just before ``` return this.each(function() { ```
| Q | A | ------------------------ | --- | Fixed Issues? | | Patch: Bug Fix? | | Major: Breaking Change? | No | Minor: New Feature? | Yes This...
From what I can see, the WindowsLive OAuth2 API is deprecated. The documentation at https://msdn.microsoft.com/en-us/library/hh243647.aspx no longer exists. I can't find any alternative documentation. I don't know where I could...
It would be useful to have an `AccessDeniedException` thrown by `validateApiResponse` upon a 401 or 403 error. This would allow writing code to automatically disconnect a broken oAuth token if...
Currently (I believe, anyway), you can attempt to do an API call without a provider being connected, and it will fail with a server-side error. Obviously nobody should do this,...