mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 01:17:18 +00:00
24 lines
No EOL
448 B
JavaScript
24 lines
No EOL
448 B
JavaScript
/* gui module for config.json editing */
|
|
var CloudCommander;
|
|
|
|
(function(){
|
|
"use strict";
|
|
|
|
var cloudcmd = CloudCommander;
|
|
|
|
var Config = {};
|
|
|
|
Config.Show = (function(){
|
|
console.log('config showed');
|
|
});
|
|
|
|
Config.Keys = function(){
|
|
console.log('config.js loaded');
|
|
cloudcmd.Viewer(function(){
|
|
Config.Show();
|
|
});
|
|
};
|
|
|
|
cloudcmd.Config = Config;
|
|
|
|
})(); |