This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
/** | |
* アプリケーション全体で共有するデータを保持したり、変更を通知する | |
*/ | |
function Registry() { | |
} | |
Registry.prototype.put = function(key, value) { | |
this[key] = value; |
NewerOlder