(localId, gd)
| 1696 | }; |
| 1697 | |
| 1698 | function getFullUrl(localId, gd) { |
| 1699 | if (!localId) return null; |
| 1700 | |
| 1701 | var context = gd._context; |
| 1702 | var baseUrl = context._exportedPlot ? '' : context._baseUrl || ''; |
| 1703 | return baseUrl ? "url('" + baseUrl + '#' + localId + "')" : 'url(#' + localId + ')'; |
| 1704 | } |
| 1705 | |
| 1706 | drawing.getTranslate = function (element) { |
| 1707 | // Note the separator [^\d] between x and y in this regex |
no outgoing calls
no test coverage detected
searching dependent graphs…