Skip to content

Commit

Permalink
ライブラリ更新
Browse files Browse the repository at this point in the history
git-svn-id: http://www.cozmixng.org/repos/piro/tabcatalog/trunk@7126 599a83e7-65a4-db11-8015-0010dcdd6dc2
  • Loading branch information
piro committed Aug 27, 2010
1 parent 20da16f commit 8e36d27
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion modules/animationManager.js
Expand Up @@ -26,7 +26,8 @@

/* To work as a JS Code Module (*require jstimer.jsm)
http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/jstimer.jsm */
if (typeof window == 'undefined') {
if (typeof window == 'undefined' ||
(window && typeof window.constructor == 'function')) {
this.EXPORTED_SYMBOLS = ['animationManager'];

// If namespace.jsm is available, export symbols to the shared namespace.
Expand Down
3 changes: 2 additions & 1 deletion modules/boxObject.js
Expand Up @@ -16,7 +16,8 @@
*/

/* To work as a JS Code Module */
if (typeof window == 'undefined') {
if (typeof window == 'undefined' ||
(window && typeof window.constructor == 'function')) {
this.EXPORTED_SYMBOLS = ['boxObject'];

// If namespace.jsm is available, export symbols to the shared namespace.
Expand Down
3 changes: 2 additions & 1 deletion modules/prefs.js
Expand Up @@ -27,7 +27,8 @@
*/

/* To work as a JS Code Module */
if (typeof window == 'undefined') {
if (typeof window == 'undefined' ||
(window && typeof window.constructor == 'function')) {
this.EXPORTED_SYMBOLS = ['prefs'];

// If namespace.jsm is available, export symbols to the shared namespace.
Expand Down

0 comments on commit 8e36d27

Please sign in to comment.