rename alterApp() to use the same style of other xdc-related functions

master
adbenitez 2022-01-02 18:38:12 -05:00
parent 7e9536c806
commit 53d708f8c8
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ function clearXdcStorage() {
alert("Done.");
}
function alterApp() {
function alterXdcApp() {
var title = document.getElementsByTagName('title')[0];
if (typeof title == 'undefined') {
title = document.createElement('title');
@ -122,4 +122,4 @@ function alterApp() {
}
}
window.addEventListener("load", alterApp);
window.addEventListener("load", alterXdcApp);