jcdarwin
jcdarwin
Yep, you can see this behaviour at: http://codepen.io/Tuscan/pen/EVNrOr The net result is that video embeds without both height and width end up with an aspect ratio of 2:1 instead of...
Thanks for that -- for any iFrame (at least in Chrome), the condition: if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width')))) will never evaluate true, as iFrames have a default...
Had further look/think about this -- as per the amended codepen (first example in http://codepen.io/Tuscan/pen/EVNrOr) we still think there's a problem with having (!$this.css('height') && !$this.css('width'), as this means that...
For what it's worth, I've struck this problem too, where it seems BLC simply hangs near the end of processing the links. It's been working fine for a long time...
@BigstickCarpet Just wondering if you've made any progress on implementing the third-party plugin system for the new Swagger parser, and the plugin for allowing the merge of AllOf definitions? We're...
The problem I'm having is that I'm appending some elements to an XML file, and unfortunately some other elements are ending up malformed. In particular I start out with: and,...
In order to deal with this annoying behaviour, you can do this hack, which removes the ```data-react-helmet``` attribute between Helmet calls. ``` (function() { this.removeAttribute = function(tagName, attribute) { var...
The secret here is that -- in order to stop the entry from being saved -- you need to set `isInvalid == true`, e.g. ``` Event::on( SaveController::class, SaveController::EVENT_BEFORE_SAVE_ENTRY, function(SaveEvent $e)...
Sorry Dario for not getting to this sooner -- I'm not quite sure how you're using things -- maybe if you could send through a zip of your EPUB content...
Can you send through or direct me to an example of this behaviour that you're seeing? Jason On Wed, Jun 25, 2014 at 7:24 AM, jmbhalodia [email protected] wrote: > Every...