пятница, 3 августа 2012 г.

Теги и буква "б"


Для решения проблемы разделения тегов при нажатии "Б" делаем следующее :



В файле : public/js/ips. tags .js

Найти:
// Separate event for comma press - event is keyup, not keydown, so that
// international keyboard that share the comma key still work.
eventCommaPress: function(e){
// 188 = comma
if( e.keyCode != 188 ){
return;
}

после добавить:
var lastChar = this.newInput.value.charAt( this.newInput.value.length - 1 );
if( lastChar != ',' ){
return;
}

Комментариев нет:

Отправить комментарий