Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2043 | Rev 3231 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2043 Rev 3230
Línea 1... Línea 1...
1
import axios from './axios'
1
import axios from './axios'
Línea 2... Línea 2...
2
 
2
 
3
export {
3
export {
4
    axios
4
  axios
Línea 5... Línea 5...
5
}
5
}
6
 
-
 
7
export const CKEDITOR_OPTIONS = {
-
 
8
    startupFocus: "end",
-
 
9
    allowedContent: false,
6
 
10
    image_previewText: ' ',
-
 
11
    toolbarGroups: [
7
export const CKEDITOR_OPTIONS = {
12
      // { name: 'document',	   groups: [ 'mode', 'document', 'doctools' ] },
8
  toolbar: [
13
      // { name: 'clipboard',   groups: [ 'undo' ] },
-
 
14
      { name: 'editing', groups: ['find', 'selection', 'spellchecker'] },
9
    { name: 'editing', items: ['Scayt'] },
15
      { name: 'forms' },
10
    { name: 'links', items: ['Link', 'Unlink'] },
16
      { name: 'basicstyles', groups: ['basicstyles', 'cleanup'] },
11
    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
17
      { name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi'] },
12
    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
18
      { name: 'links' },
13
    '/',
19
      { name: 'insert' },
-
 
20
      { name: 'styles' },
14
    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
21
      { name: 'colors' },
-
 
22
      { name: 'tools' },
15
    { name: 'styles', items: ['Styles', 'Format'] },
23
      { name: 'others' },
16
    { name: 'tools', items: ['Maximize'] }
-
 
17
  ],
24
    ],
18
  language_list: ['es:Spanish'],
-
 
19
  language: 'es',
25
    removeButtons: 'Anchor,Scayt',
20
  removePlugins: 'elementspath,Anchor',
26
    removePlugins: 'elementspath,Anchor,wsc,scayt'
21
  heigth: 100
27
}
22
}