[otrs-cvs] otrs/var/httpd/htdocs/js Core.Agent.Admin.ProcessManagement.Canvas.js, 1.39, 1.40
"CVS commits notifications of OTRS.org" <[email protected]>
| Newsgroups | gmane.comp.otrs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Comments:
Update of /home/cvs/otrs/var/httpd/htdocs/js
In directory lancelot:/tmp/cvs-serv30624/var/httpd/htdocs/js
Modified Files:
Core.Agent.Admin.ProcessManagement.Canvas.js
Log Message:
Fixed an issue where transition labels would not get unhighlighted on stop of hover.
Author: mab
Index: Core.Agent.Admin.ProcessManagement.Canvas.js
===================================================================
RCS file: /home/cvs/otrs/var/httpd/htdocs/js/Core.Agent.Admin.ProcessManagement.Canvas.js,v
retrieving revision 1.39
retrieving revision 1.40
diff -2 -u -d -r1.39 -r1.40
--- Core.Agent.Admin.ProcessManagement.Canvas.js 27 Nov 2012 14:46:35 -0000 1.39
+++ Core.Agent.Admin.ProcessManagement.Canvas.js 10 Dec 2012 10:28:01 -0000 1.40
@@ -633,7 +633,12 @@
Data.connection.addOverlay([ "Diamond", { location: 18, width: 15, length: 25, paintStyle: { fillStyle: '#FFF', outlineWidth: 1, outlineColor: '#000'} } ]);
Data.connection.addOverlay([ "PlainArrow", { location: -15, width: 20, length: 15 } ]);
- Data.connection.addOverlay([ "Label", { label: TransitionName, location: 0.5, cssClass: 'TransitionLabel', id: TransitionID, events: { mouseenter: function(labelOverlay, originalEvent) {
- TargetNS.HighlightTransitionLabel(labelOverlay);
- } } } ]);
+ Data.connection.addOverlay([ "Label", { label: TransitionName, location: 0.5, cssClass: 'TransitionLabel', id: TransitionID, events: {
+ mouseenter: function(labelOverlay, originalEvent) {
+ TargetNS.HighlightTransitionLabel(labelOverlay);
+ },
+ mouseexit: function(labelOverlay, originalEvent) {
+ TargetNS.UnHighlightTransitionLabel(labelOverlay);
+ }
+ } } ]);
}
});
---------------------------------------------------------------------
OTRS mailing list: cvs-log - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/cvs-log
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log