Skip to content

Commit

Permalink
[+] Rédaction d'un article: optimisation de l'ajout rapide de tag (close
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane committed Oct 24, 2016
1 parent 7cbaac2 commit d13f49b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/lib/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ function toggleDiv(divId,togglerId,on,off){
}
function insTag(where, tag) {
var formfield = document.getElementsByName(where)['0'];
var tags = formfield.value.split(', ');
if (tags.indexOf(tag) != -1) return;
if(formfield.value=='')
formfield.value=tag;
else
Expand Down
1 change: 1 addition & 0 deletions readme/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[+] Tri des articles par ordre aléatoire configurable à partir de l'administration (Paramètres > Options d'affichage et Catégories)
[+] plxShow:templateCSS - Prise en compte des fichiers css minifiés si disponibles (contribution alexandre-lg)
[+] #191: plxShow:catList - Ajout de la variable #cat_description
[+] #194: Rédaction d'un article: optimisation de l'ajout rapide de tag (contribution MatthieuQuantin)
BUG Non affichage du nombre de commentaires d'un article si les commentaires sont fermés
BUG plxUtils::removeAccents - amélioration de la prise en compte des caractères non latin
BUG #171: Décalage theme par défaut
Expand Down

0 comments on commit d13f49b

Please sign in to comment.