The attached session break is supposed to start at 05:20 which it does but it also adds a break line at 15:20. I was wondering what I need to do to eliminate this second break line. Bruce
Announcement
Collapse
No announcement yet.
Session breaks
Collapse
X
-
Hello InvGrp2,
In your conditional statement you are checking to see if barHr is greater than or equal to nHr. At the 15:00 hour, 15 will be greater than 05, which is why your study marks the 15:20 bar.
Change this section of the conditional statement:
PHP Code:barHr >= nHr
PHP Code:barHr == nHr
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment