fixed Github issue #18 : textarea fixed (jstoolbar or ckeditor)
This commit is contained in:
parent
6ea3d1a63d
commit
2a10098d99
@ -378,7 +378,12 @@ function initEditFieldListeners()
|
||||
return false;
|
||||
});
|
||||
|
||||
var wikiToolbar = new jsToolBar(document.getElementById('description_textarea')); wikiToolbar.setHelpLink('/help/fr/wiki_syntax_textile.html'); wikiToolbar.draw();
|
||||
if(typeof(jsToolBar) === typeof(Function))
|
||||
{
|
||||
var wikiToolbar = new jsToolBar(document.getElementById('description_textarea')); wikiToolbar.setHelpLink('/help/fr/wiki_syntax_textile.html'); wikiToolbar.draw();
|
||||
} else if(typeof(CKEDITOR) === "object" && typeof(CKEDITOR.replace) === typeof(Function)) {
|
||||
CKEDITOR.replace('description_textarea', { height: 100, zIndex: 999});
|
||||
}
|
||||
}
|
||||
|
||||
/* end Description */
|
||||
|
||||
@ -53,6 +53,7 @@ body.controller-issues.action-show .edited .dynamicEdit {
|
||||
|
||||
body.controller-issues.action-show div.issue.details .value.edited .dynamicEdit {
|
||||
opacity: 1;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
body.controller-issues.action-show div.issue.details .btn-primary {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user