More elements for the autocompletion

This commit is contained in:
Michael Vogel 2016-04-17 11:54:49 +02:00 committed by Roland Haeder
parent 7c68e14b3d
commit 1e933744da
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ function string2bb(element) {
$.fn.bbco_autocomplete = function(type) {
if(type=='bbcode') {
var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'nobb', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size'];
var open_close_elements = ['abstract','bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'nobb', 'noparse', 'pre', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img', 'url', 'video', 'audio', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size'];
var open_elements = ['*', 'hr'];
var elements = open_close_elements.concat(open_elements);