diff options
author | hyunduk.kim <hyunduk.kim@samsung.com> | 2019-10-21 10:53:38 +0900 |
---|---|---|
committer | hyunduk.kim <hyunduk.kim@samsung.com> | 2019-10-21 10:54:07 +0900 |
commit | cccb713e32bab999dfc4d6f404a1156b87271899 (patch) | |
tree | 6a6e7386075fc3a57746fe80992f83343585d224 | |
parent | 48f35f5eb6aec0482a4078496b83ed96451d0a1a (diff) | |
download | webapp-addon-setting-cccb713e32bab999dfc4d6f404a1156b87271899.tar.gz webapp-addon-setting-cccb713e32bab999dfc4d6f404a1156b87271899.tar.bz2 webapp-addon-setting-cccb713e32bab999dfc4d6f404a1156b87271899.zip |
Fix column title in main page
This changes the title of column from 'EXTENSIONS lists'
to 'Addons List'
Change-Id: I3bdc789186eb63a30f799f6fe389f8ca076dd6bb
Signed-off-by: hyunduk.kim <hyunduk.kim@samsung.com>
-rwxr-xr-x | src/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js index e0fe8eb..17eed53 100755 --- a/src/main.js +++ b/src/main.js @@ -45,7 +45,7 @@ var refreshExtensionsList = function() { var td_2 = document.createElement('td'); tr.appendChild(td_1); tr.appendChild(td_2); - td_1.textContent = 'EXTENSIONS lists'; + td_1.textContent = 'Addons List'; table.appendChild(tr); extension_manager.loadJsonDB(); |