/* -*- coding: utf-8 -*-
*
* Copyright 2013 whiteleaf. All rights reserved.
*/
/*
* 全ページ共通のUI関係のコード
*/
$(document).ready(function() {
"use strict";
/*
* bootboxjs 初期設定
*/
bootbox.setDefaults({
locale: "ja",
backdrop: "static",
});
/*
* ページ内リンクをスクロールで移動するための初期化
* (jquery.moveto.js)
*/
$.moveTo();
/*
* 自然に消える alert
*/
$("#fadeout-alert").delay(2000).animate({ opacity: "hide" }, 1500);
/*************************************************************************
* Webサーバの方から入力を求められた時にモーダルを表示して返事を返す
*************************************************************************/
(function() {
var notification = Narou.Notification.instance();
var boxes = {};
// モーダル生存確認への応答
var pong = function(id) {
var hash = {};
hash["pong.modal." + id] = true
notification.send(hash);
};
// ユーザの選択をサーバに通知する
var answer = function(id, result) {
var hash = {};
hash["answer.modal." + id] = { result: result };
notification.send(hash);
};
notification.on("ping.modal", function(json) {
if (boxes[json.id]) pong(json.id);
});
// キャンセル、OK を確認する confirm モーダル表示
notification.on("modal.confirm", function(json) {
var id = json.id;
boxes[id] = bootbox.confirm(json.message.replace(/\n/g, "
"), function(result) {
answer(id, result);
});
});
// 選択肢を表示する choose モーダル表示
notification.on("modal.choose", function(json) {
var id = json.id;
var message = "