Patch #32381
Wiki preview : manage dynamic content
Status: | New | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | Wiki | |||
Target version: | - |
Description
Hi,
- In public/javascripts/application.js
The wiki toolbar preview event is written like this :
$('#content').on('click', 'div.jstTabs a.tab-preview', function(event){
...
<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>
History
#1
Updated by Jérôme BATAILLE over 2 years ago
Sorry, wrong syntax in description
- original javascript :
$('#content').on('click', 'div.jstTabs a.tab-preview', function(event){
...
- Enhancement :
$('body').on('click', '#content div.jstTabs a.tab-preview', function(event){
...
#2
Updated by Jérôme BATAILLE over 2 years ago
It is useful in plugins that have dynamic popups like popup windows.
Thanks a lot in advance to study this simple enhancement.