Merge commit 'refs/merge-requests/47' of https://gitorious.org/social/mainline into merge-requests/47
This commit is contained in:
commit
6862184956
@ -1580,7 +1580,7 @@ var SN = { // StatusNet
|
|||||||
// don't navigate away from the field on tab when selecting an item
|
// don't navigate away from the field on tab when selecting an item
|
||||||
txtBox.on( "keydown", function ( event ) {
|
txtBox.on( "keydown", function ( event ) {
|
||||||
if ( event.keyCode === $.ui.keyCode.TAB &&
|
if ( event.keyCode === $.ui.keyCode.TAB &&
|
||||||
$(this).data( "autocomplete" ).menu.active ) {
|
$(this).data( "ui-autocomplete" ).menu.active ) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
}).autocomplete({
|
}).autocomplete({
|
||||||
@ -1601,7 +1601,7 @@ var SN = { // StatusNet
|
|||||||
this.value = terms.join(" ");
|
this.value = terms.join(" ");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}).data('autocomplete')._renderItem = function (ul, item) {
|
}).data('ui-autocomplete')._renderItem = function (ul, item) {
|
||||||
// FIXME: with jQuery UI you cannot have it highlight the match
|
// FIXME: with jQuery UI you cannot have it highlight the match
|
||||||
var _l = '<a class="ptag-ac-line-tag">' + item.tag
|
var _l = '<a class="ptag-ac-line-tag">' + item.tag
|
||||||
+ ' <em class="privacy_mode">' + item.mode + '</em>'
|
+ ' <em class="privacy_mode">' + item.mode + '</em>'
|
||||||
|
Loading…
Reference in New Issue
Block a user