Commit c4640e6d by Takumi Imai

commonのhtml フォルダ整理

parent 50bd794d
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -17,11 +17,11 @@ PP.init = function () {
};
PP.loadCommon = function () {
$('#includedHeader').load('../html/common/header.html', function () {
$('#includedHeader').load('../common/html/header.html', function () {
I18N.initi18n();
HEADER.init();
});
$('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
$('#includedConfirmModal').load('../common/html/confirmModal.html', function () {
I18N.initi18n();
});
};
......
......@@ -15,7 +15,7 @@ RF.init = function () {
};
RF.loadCommon = function () {
$('#includedHeader').load('../html/common/header.html', function () {
$('#includedHeader').load('../common/html/header.html', function () {
I18N.initi18n();
HEADER.init();
});
......
......@@ -16,11 +16,11 @@ RL.init = function () {
};
RL.loadCommon = function () {
$('#includedHeader').load('../html/common/header.html', function () {
$('#includedHeader').load('../common/html/header.html', function () {
I18N.initi18n();
HEADER.init();
});
$('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
$('#includedConfirmModal').load('../common/html/confirmModal.html', function () {
I18N.initi18n();
});
};
......
......@@ -133,11 +133,11 @@ SETTINGS.getNewPasswordRe = function () {
// Initalize screen
SETTINGS.initScreen = function () {
$('#includedHeader').load('../html/common/header.html', function () {
$('#includedHeader').load('../common/html/header.html', function () {
I18N.initi18n();
HEADER.init();
});
$('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
$('#includedConfirmModal').load('../common/html/confirmModal.html', function () {
I18N.initi18n();
});
// Login ID
......
......@@ -6,7 +6,7 @@ var TEMPLATE = {};
/** template load header */
TEMPLATE.loadHearder = function (elmentId) {
$(elmentId).load('../html/common/header.html', function () {
$(elmentId).load('../common/html/header.html', function () {
$('#iconHomeDashboard').removeClass('active');
$('#iconHomeWorkList').removeClass('active');
if (sessionStorage.activeHomePage == CONSTANT.PAGE_NAME.OPERATION_LIST) {
......@@ -32,7 +32,7 @@ TEMPLATE.loadDashboardSetting = function (elmentId, changeCallback) {
/** Template load confirm model */
TEMPLATE.loadConfirmModal = function (elmentId) {
$(elmentId).load('../html/common/confirmModal.html', function () {
$(elmentId).load('../common/html/confirmModal.html', function () {
I18N.initi18n();
});
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment