提交 908a2e1b 编写于 作者: K Kohsuke Kawaguchi

Merge pull request #1044

......@@ -55,6 +55,9 @@ Upcoming changes</a>
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=rfe>
Close drop-down button menu when clicking outside
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17050">issue 17050</a>)
<li class=bug>
Fixed NPE if <tt>RunParameterValue</tt> points to a stable build.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20857">issue 20857</a>)
......
......@@ -1525,7 +1525,7 @@ version: 2.9.0
}
if (this._activationButtonPressed || this._bOptionPressed) {
if (this.isActive() || this._bOptionPressed) {
Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
......@@ -1583,7 +1583,7 @@ version: 2.9.0
}
if (this._activationButtonPressed || this._bOptionPressed) {
if (this.isActive() || this._bOptionPressed) {
Event.on(document, "mouseup", this._onDocumentMouseUp, null, this);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册