Changeset 16444


Ignore:
Timestamp:
2007/10/15 22:43:03 (16 years ago)
Author:
adachi
Message:

ライセンス表記追加, 細かな文言修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/user_data/templates/default/js/ownersstore.js

    r16406 r16444  
     1/* 
     2 * Thickbox 3.1 - One Box To Rule Them All. 
     3 * By Cody Lindley (http://www.codylindley.com) 
     4 * Copyright (c) 2007 cody lindley 
     5 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php 
     6*/ 
     7 
    18(function() { 
     9// オーナーズストア通信スクリプトのパス 
     10var upgrade_url = '<!--{$smarty.const.URL_DIR}-->upgrade/index.php'; 
     11 
     12// ロード中メッセージ(配信サーバと通信中です…) 
     13var loading_message = '\u30B5\u30FC\u30D0\u3068\u901A\u4FE1\u4E2D\u3067\u3059'; 
     14 
     15// ロード中画像の先読み 
     16var loading_img = new Image(); 
     17loading_img.src = '/user_data/templates/default/img/ajax/loading.gif'; 
     18 
    219var OwnersStore = function() {} 
    320OwnersStore.prototype = { 
    4     // detect MacX and Firefox use. 
     21    // detect Mac and Firefox use. 
    522    detectMacFF: function() { 
    623        var ua = navigator.userAgent.toLowerCase(); 
     
    5572        $("body").append( 
    5673              "<div id='TB_load'>" 
    57             + "  <p style='color:#ffffff'>Connecting Server . . .</p>" 
    58             + "  <img src='/user_data/templates/default/img/ajax/loading.gif' />" 
     74            + "  <p style='color:#ffffff'>" + loading_message + "</p>" 
     75            + "  <img src='" + loading_img.src + "' />" 
    5976            + "</div>" 
    6077        ); 
Note: See TracChangeset for help on using the changeset viewer.