This script is for PERSONAL use only!
You are free to install this script for yourself, but it is not allowed to be used wiki-wide (e.g., in MediaWiki:Common.js or MediaWiki:Wikia.js), as it would violate Fandom's Terms of Use.
(See the customization policy)
ToDoList adds a button to the toolbar which lets you view the wikitext of your local to do page and also lets you edit it without visiting the page. The modal also contains a link to your to do page.
Installation
Configuration
On default setting, the script reads from and writes to User:<USERNAME>/To do
. If you want to change the location the script uses, simply replace your local to do page link with the one in the example below. For example, if you store your to do list on User:SomeFandomUser/my_todo_list
, you'd enter this:
window.toDoList = { page: 'User:SomeFandomUser/my_todo_list' };
Additionally you have the option to chose between a medium sized modal and a large-sized modal. The two possible values for size
are medium
and large
.
If you import the script in your /global.js but you need to change the to do page for one wiki locally, you can simply add the code below in your /wikia.js (and change it to your needs) and it will override the global configuration for this wiki.
This is the default configuration:
window.toDoList = { page: 'User:<USERNAME>/To do', size: 'medium' };