(hash)
| 206 | |
| 207 | /* Get the current location hash excluding the '#' symbol. */ |
| 208 | function setHash(hash) { |
| 209 | // It would be nice if we could use document.location.hash here, |
| 210 | // but it's faulty sometimes. |
| 211 | if (hash == '') hash = '#' |
| 212 | document.location.hash = hash; |
| 213 | } |
| 214 | |
| 215 | function createState(baseUrl, newUrl, flexAppUrl) { |
| 216 | return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; |
no outgoing calls
no test coverage detected
searching dependent graphs…