Commit 78c29fa2 by Masaru Abe

隠しグループ対応

parent 22a12597
......@@ -1262,7 +1262,7 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im
},
function (xmlHttpRequest, txtStatus, errorThrown) {
if (xmlHttpRequest.status == 404) {
showAlertScreen(I18N.i18nText('msgContentNotExist'));
CONTENTVIEW.showAlertScreen(I18N.i18nText('msgContentNotExist'));
}
else {
// Show system error
......
......@@ -142,7 +142,7 @@ $(document).ready(function () {
// グループ認証関連
$('#dlgAuthCode').hide();
//$('#login-username').click(HOME.showDlgAuthCode);
$('#login-username').click(HOME.showDlgAuthCode);
$('#dlgAuthCode-ok').click(HOME.authCodeOkFunction);
$('#dlgAuthCode-cancel').click(HOME.authCodeCancelFunction);
......@@ -916,7 +916,8 @@ HOME.groupSelectFunction = function() {
//Get Data from Category Json
HOME.getDataJsonFileGenre = function() {
var params = {
sid: ClientData.userInfo_sid()
sid: ClientData.userInfo_sid(),
authCode: ClientData.authCode()
};
HOME.abapi('category', params, 'GET', function (data1) {
HOME.dataGenre = data1.categoryList;
......
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