()
| 81 | } |
| 82 | |
| 83 | function hashChangeHandler() |
| 84 | { |
| 85 | currentHref = document.location.href; |
| 86 | var flexAppUrl = getHash(); |
| 87 | //ADR: to fix multiple |
| 88 | if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { |
| 89 | var pl = getPlayers(); |
| 90 | for (var i = 0; i < pl.length; i++) { |
| 91 | pl[i].browserURLChange(flexAppUrl); |
| 92 | } |
| 93 | } else { |
| 94 | getPlayer().browserURLChange(flexAppUrl); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Accessor functions for obtaining specific elements of the page. |
| 99 | function getHistoryFrame() |
nothing calls this directly
no test coverage detected
searching dependent graphs…