Patch #32381
Updated by Go MAEDA almost 3 years ago
Hi, * *In public/javascripts/application.js* The wiki toolbar preview event is written like this : <pre><code class="javascript"> $('#content').on('click', 'div.jstTabs a.tab-preview', function(event){ ... </code></pre> <code></pre> * If we re-write it like this, dynamic added wiki content preview (like the one in modal windows) will work : <pre><code class="javascript"> $('body').on('click', '#content.scrum div.jstTabs a.tab-preview', function(event){ ... </code></pre> <code></pre>