Anthony Blackshaw

Results 150 comments of Anthony Blackshaw

Hi @FuXual can you send me an example of your JS that's being used to gather the html to submit to your server. Also have you tried implementing this code...

Hey @laurobecker - I think you found a bug here. At the moment I suspect the code is just switching out the existing link with a new one and not...

@Luc-cpl completely agree - we have some fairly hacky ways of doing this currently using fixtures (which provide limit scope anyway). It's on my road-map for the next major release...

Sorry you've not gotten answers on stackoverflow, I often struggle to find time to search StackOverflow these days when once I was very active there. We used gitter at one...

@ScotsScripts sort of - the `` is an inline element that CT wont recognise, so you can: - wrap it in a paragraph, - use a fixture, - set the...

There's some basic info on the initialising the editor for fixtures on this page: http://getcontenttools.com/api/content-tools (search for fixture). The sandbox demo within the project repo includes a fixture example in...

@ScotsScripts can you post the code you have for initializing your editor please?

Can you try changing the line to: ``` editor.init('[data-editable], [data-fixture]', 'data-name'); ``` The first argument is a CSS query that should capture both editable and fixture regions.

I save fixtures in the same way I save regions (e.g whatever the output of the `html` method against the root node for the region or fixture is). In my...

I've done both before, the content tools website is an example of where I save the content in the editor directly into the template, through I more commonly use the...