Sha256: 3def59386fff4a09a97f0c9b92066132fc600e43f789caf0c23acd1c08a18bd2

Contents?: true

Size: 350 Bytes

Versions: 4

Compression:

Stored size: 350 Bytes

Contents

/* Selection audioblock under a section tag and move it before the title */
var $sections = $('section');
$sections.each(function () {
    var $this = $(this);
    var $audio = $this.find('.audioblock');
    var $audioHtml = $audio.html();
    if ($audioHtml != null) {
        $this.removeData($audioHtml);
        $audio.prependTo($this);
    }
});

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hyla-1.0.7.pre.8 lib/resources/assets/revealjs-redhat/lib/js/debug/gpe.js
hyla-1.0.7.pre.7 lib/resources/assets/revealjs-redhat/lib/js/debug/gpe.js
hyla-1.0.7.pre.6 lib/resources/assets/revealjs-redhat/lib/js/gpe.js
hyla-1.0.7.pre.5 lib/resources/assets/revealjs-redhat/lib/js/gpe.js