This page, or parts of it, are still untranslated. Please translate it to the appropriate language (español).
ToDoList añade un botón a la barra de herramientas que le permite ver el wikitexto de su página local de tareas pendientes y también le permite editarlo sin visitar la página. El modal también contiene un enlace a su página de tareas pendientes.
Installation
Configuration
En la configuración predeterminada, el script lee y escribe en User:<USERNAME>/To do. Si desea cambiar la ubicación que usa el script, simplemente reemplace el enlace de la página local de tareas pendientes con el del ejemplo siguiente. Por ejemplo, si almacena su lista de tareas pendientes User:SomeFandomUser/my_todo_list, debe introducir esto:
window.toDoList = {
page: 'User:SomeFandomUser/my_todo_list'
};
Additionally you have the option adjust your modal's size.
height- The height of the edit area, entered as string with a CSS unit of size. Default:
35em, examples:20em,30px. width- The width of the modal, entered as number of pixels (just the number, without pixels!) or as string with a CSS unit of size. Default:
400, examples:420,'50%','100vw'.
Si importa el script en su /global.js pero necesita cambiar la página de tareas para una wiki localmente, simplemente puede agregar el código a continuación en su /wikia.js (y cambiarlo según sus necesidades) y se anulará la configuración global de esta wiki.
Esta es la configuración por defecto:
window.toDoList = {
page: 'User:<USERNAME>/To do',
height: '35em',
width: 400
};