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