Anthony Blackshaw

Results 150 comments of Anthony Blackshaw

@nuggets sorry you're seeing this error I can't reproduce it in either my live projects or the sandbox demo and the steps you've provided (both are using the latest release...

@nuggets so I'm saving content to a database on a number of sites at the moment and not experiencing this issue on 1.6.10, which points to the issue being with...

Hi @Macs75, Thanks for the kind words :+1: I'd recommend overriding the existing table tool to do this, for example: ``` CoffeeScript class ContentTools.Tools.BootstrapTable extends ContentTools.Tools.Table # Insert/Update Bootstrap table...

@Macs75 Typing faster than I can think, you are entirely correct, I've updated the code in my previous comment.

@Macs75 at the moment there isn't an out of the box solution for layouts of this sort dynamically. There's some discussion on this here #13 and this is a planned...

@itsmelion specifically for the case in question if you wanted to rely on ContentTools to ensure `rel="external,nofollow"` is always in place then the simplest option would be to define your...

Hi @Teddy95 - yes currently the system only supports for a single class and I agree this is limiting, I know it's been looked at previously (but I'm now struggling...

Hi @koutsenko, It's a while since I've worked with that code but I believe the following is how it's intended to work and I hope that answers your question. ```javascript...

@koutsenko OK but from the code you sent me it looks like you're always sending a tag not a string, if you want to clear all span tags you should...

Does this resolve? ```coffee element.content = element.content.unformat(from, to, 'span') element.content = element.content.format( from, to, new Tag('span', {'class': 'fontfamilied', 'style': 'font-family: ' + family}) ) element.updateInnerHTML() ```