(hash)
| 197 | |
| 198 | /* Get the current location hash excluding the '#' symbol. */ |
| 199 | function setHash(hash) { |
| 200 | // It would be nice if we could use document.location.hash here, |
| 201 | // but it's faulty sometimes. |
| 202 | if (hash == '') hash = '#' |
| 203 | document.location.hash = hash; |
| 204 | } |
| 205 | |
| 206 | function createState(baseUrl, newUrl, flexAppUrl) { |
| 207 | return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; |
no outgoing calls
no test coverage detected
searching dependent graphs…