Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'integration/master' into rhbz1227575
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Jun 3, 2015
2 parents dedd1e9 + dfb1488 commit 3d6e0b5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
7 changes: 5 additions & 2 deletions docs/release-notes.md
Expand Up @@ -27,13 +27,15 @@ Example usage in html file: `<link rel="shortcut icon" href="#{assets['img/logo/

<h5>Deployment</h5>

Deployment for this release may require a longer timeout due to underlying database changes.
This is dependent on database size and the system administrator should consider increasing the JBoss timeout value in standalone.xml.
* Deployment for this release may require a longer timeout due to underlying database changes. This is dependent on database size and the system administrator should consider increasing the JBoss timeout value in standalone.xml.

<system-properties>
...
<property name="jboss.as.management.blocking.timeout" value="2000"/>
</system-properties>
* The Zanata administrator will also need to reindex HProject table via the Administration menu. See [Manage search](user-guide/admin/manage-search) for more information.


<h5>Bug fixes</h5>
Expand All @@ -57,6 +59,7 @@ This is dependent on database size and the system administrator should consider
* [1123186](https://bugzilla.redhat.com/show_bug.cgi?id=1123186) - Project search fails for multiple word project names
* [1112498](https://bugzilla.redhat.com/show_bug.cgi?id=1112498) - Unable to remove self as maintainer
* [1227575](https://bugzilla.redhat.com/show_bug.cgi?id=1227575) - Exception on emptying the search field when many users were reported
* [1224030](https://bugzilla.redhat.com/show_bug.cgi?id=1224030) - Search form does not trigger search if paste text

-----------------------

Expand Down
Expand Up @@ -94,12 +94,19 @@
}

jQuery(function() {
jQuery('#' + '#{cc.attrs.id}-autocomplete__input').typing({
var inputField = jQuery('#' + '#{cc.attrs.id}-autocomplete__input');
inputField.typing({
stop: function(event, elem) {
onValueChange(elem, event, #{cc.attrs.id}RenderResult, #{cc.attrs.id}ClearResults);
},
delay: 400
});

inputField.bind('paste cut', function(event) {
setTimeout(function () {
onValueChange(inputField, event, #{cc.attrs.id}RenderResult, #{cc.attrs.id}ClearResults);
}, 400);
});
});


Expand Down

0 comments on commit 3d6e0b5

Please sign in to comment.