Skip to content

Commit

Permalink
Update credit
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Mar 7, 2014
1 parent d902e67 commit e069d99
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion content/uxu/messengercomposeOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* The Original Code is UxU - UnitTest.XUL.
*
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2010
* Portions created by the Initial Developer are Copyright (C) 2010-2014
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <shimoda@clear-code.com>
Expand Down
18 changes: 9 additions & 9 deletions modules/lib/action.jsm
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
/**
* @fileOverview User Action Emulator for Firefox 3.5 or later
* @author ClearCode Inc.
* @version 3
* @version 4
*
* @example
* Components.utils.import('resource://uxu-modules/lib/action.jsm');
* Components.utils.import('resource://my-modules/action.jsm');
* action.clickOn(someDOMElement);
* // See: http://www.clear-code.com/software/uxu/helpers.html.en#actions
* // (ja: http://www.clear-code.com/software/uxu/helpers.html#actions )
*
* @license
* The MIT License, Copyright (c) 2010-2011 ClearCode Inc.
* http://www.clear-code.com/repos/svn/js-codemodules/license.txt
* @url http://www.clear-code.com/repos/svn/js-codemodules/action.jsm
* @url http://www.clear-code.com/repos/svn/js-codemodules/action_tests/
* The MIT License, Copyright (c) 2010-2014 ClearCode Inc.
* https://github.com/clear-code/js-codemodules/blob/master/license.txt
* @url https://github.com/clear-code/js-codemodules/blob/master/action.jsm
* @url https://github.com/clear-code/js-codemodules/blob/master/action_tests/
*/

if (typeof window == 'undefined' ||
(window && typeof window.constructor == 'function'))
this.EXPORTED_SYMBOLS = ['action'];

// This depends on boxObject.js
// http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/boxObject.js
// https://github.com/piroor/fxaddonlibs/blob/master/boxObject.js
const BOX_OBJECT_MODULE = 'resource://uxu-modules/lib/boxObject.js';
// This depends on jstimer.jsm
// http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/jstimer.jsm
// https://github.com/piroor/fxaddonlibs/blob/master/jstimer.jsm
const TIMER_MODULE = 'resource://uxu-modules/lib/jstimer.jsm';

// var namespace;
if (typeof namespace == 'undefined') {
// If namespace.jsm is available, export symbols to the shared namespace.
// See: http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/namespace.jsm
// See: https://github.com/piroor/fxaddonlibs/blob/master/namespace.jsm
try {
let ns = {};
Components.utils.import('resource://uxu-modules/lib/namespace.jsm', ns);
Expand Down
2 changes: 1 addition & 1 deletion modules/test/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* The Original Code is UxU - UnitTest.XUL.
*
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2010-2012
* Portions created by the Initial Developer are Copyright (C) 2010-2014
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <shimoda@clear-code.com>
Expand Down
2 changes: 1 addition & 1 deletion modules/test/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* The Original Code is UxU - UnitTest.XUL.
*
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2010
* Portions created by the Initial Developer are Copyright (C) 2010-2014
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <shimoda@clear-code.com>
Expand Down
2 changes: 1 addition & 1 deletion modules/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* The Original Code is UxU - UnitTest.XUL.
*
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2010-2012
* Portions created by the Initial Developer are Copyright (C) 2010-2014
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <shimoda@clear-code.com>
Expand Down

0 comments on commit e069d99

Please sign in to comment.