[jboss-jira] [JBoss JIRA] (BPEL-316) jBPM Designer fullscreen always true
Jurriën Stutterheim (JIRA)
jira-events at lists.jboss.org
Fri Jun 7 05:15:56 EDT 2013
Jurriën Stutterheim created BPEL-316:
----------------------------------------
Summary: jBPM Designer fullscreen always true
Key: BPEL-316
URL: https://issues.jboss.org/browse/BPEL-316
Project: jBPM BPEL
Issue Type: Patch
Security Level: Public (Everyone can see)
Reporter: Jurriën Stutterheim
Assignee: Alejandro Guizar
Priority: Minor
jBPM Designer contains the following line (114) in its client's main.js:
this.fullscreen = model.fullscreen || true;
This causes this.fullscreen to be always true, which is not desirable.
I propose changing it to the following:
if (!model.fullscreen) {
model.fullscreen = true;
}
this.fullscreen = model.fullscreen;
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list