X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=0.6.x%2Fjs%2F20_ui%2F00_XUI.js;h=f856e8507f44ae343862c37edc48595db97956f4;hb=3d352d8bf476ab57cc333e8d02d0e6ea5efa69b7;hp=3f03b2a589ec3c0caa9c39930f80874e5da3d296;hpb=f01f21c6d473692d016cb2b286a61d55380be3b3;p=pettanr%2FclientJs.git diff --git a/0.6.x/js/20_ui/00_XUI.js b/0.6.x/js/20_ui/00_XUI.js index 3f03b2a..f856e85 100644 --- a/0.6.x/js/20_ui/00_XUI.js +++ b/0.6.x/js/20_ui/00_XUI.js @@ -16,27 +16,3 @@ X.UI = { currentRootData : null }; - -/* - * 'none,chrome,container' を受け取ったら、 - * { - * 'none' : 1, - * 'chrome' : 2, - * 'container' : 3, - * 1 : 'none', - * 2 : 'chrome', - * 3 : 'container' - * } こんな object を返す。 - */ -function XUI_createChecker( str ){ - var ret = {}, - ary = str.split( ',' ), - l = ary.length, - i = 0, v; - for( ; i < l; ){ - v = ary[ i ]; - ret[ v ] = ++i; - ret[ i ] = v; - }; - return ret; -};