Files
junisaber/src/components/history.js
2018-07-21 10:21:30 +02:00

21 lines
453 B
JavaScript

/**
* Update window title and history.
*/
AFRAME.registerComponent('history', {
schema: {
challengeId: {type: 'string'},
songName: {type: 'string'},
songSubName: {type: 'string'}
},
update: function () {
const data = this.data;
history.pushState(
'',
data.songName,
updateQueryParam(window.location.href, 'challenge', data.challengeId)
);
document.title = `Super Saber - ${data.songName}`;
}
});