Advertisement
Gustavo_Inzunza

titis

Dec 4th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.52 KB | None | 0 0
  1. GLOBAL = {
  2.     environment: "development",
  3.     mouse : {
  4.         xCoord : 0,
  5.         yCoord : 0,
  6.         button : 0
  7.     },
  8.     serverCalendar : undefined,
  9.     URL_CHAT:"ws://54.207.80.28:9300", //corresponde a la direccion ip y puerto del servidor de websocket
  10.     URL_CHAT_PERFIL_IMAGES:"http://localhost:86/imagesperfil/", // corresponde a la direccion dentro del servidor
  11.     URL : "http://localhost:86/",
  12.     URL_PUBLIC : "http://localhost:86/",
  13.     URL_LARAVEL : "http://localhost:8000/",
  14.     URL_EMI :"http://54.207.80.28/",
  15.     URL_DICOM : "http://54.207.80.28/",
  16.     URL_DIRECTORIO:"http://localhost:86/",
  17.         URL_AUDIO_MAIN_FOLDER: "http://localhost:86/audioRec/",
  18.         URL_AUDIO_UPLOAD_FOLDER: "http://localhost:86/audioRec/uploads/",
  19.     AUDIO_KEY: "8ed47175a15c54edc59890d511ba93e1",
  20.     resources : {
  21.  
  22.     },
  23.     calendar : {
  24.         Availability : {
  25.             Month : undefined,
  26.             Week : undefined
  27.         },
  28.         Month : undefined,
  29.         Week : undefined,
  30.         Current : {
  31.             Year : undefined,
  32.             Month : undefined,
  33.             Day : undefined
  34.         },
  35.         StartWeek : {
  36.             Day : undefined,
  37.             Month : undefined,
  38.             Year : undefined
  39.         },
  40.         Actual : {
  41.             Month : undefined,
  42.             Year : undefined
  43.         },
  44.         Show : {
  45.             Day : undefined,
  46.             Month : undefined,
  47.             Year : undefined
  48.         }
  49.     },
  50.     actualView : "month",
  51.     selection : undefined,
  52.     bubble : undefined,
  53.     httpRMedico : undefined,
  54.     httpRPaciente : undefined,
  55.     httpRbusqueda : undefined,
  56.     Local  : undefined,
  57.     Functions : undefined,
  58.         Timer:false,            //timer actualizar cita (true false)
  59.         Timer_time:30000,        //30 segundos
  60.         CopyPaste:true
  61. };
  62.  
  63. var myToolbar = [
  64.    {name: 'basicstyles', groups: ['basicstyles', 'cleanup'], items: ['Bold', 'Italic', 'Underline', 'Strike', '-', 'RemoveFormat']},
  65.    {name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi'], items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']},
  66.    {name: 'clipboard', groups: ['clipboard', 'undo'], items: ['Cut', 'Copy', 'Paste', 'PasteFromWord', '-', 'Undo', 'Redo']},
  67.    {name: 'editing', groups: ['find', 'selection', 'spellchecker'], items: ['Scayt']},
  68.    {name: 'insert', items: ['Table']},
  69.    {name: 'image', items: ['Image']},
  70.    {name: 'source', items: ['Source']}
  71. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement