2017-05-21 22:52:55 +08:00
|
|
|
// DO NOT EDIT THIS FILE
|
|
|
|
// Copy it to `config.js` and edit it
|
|
|
|
window.CONFIG = {
|
2017-05-26 06:51:34 +08:00
|
|
|
defaultTemplateId: 'default', //This is the default template for 2 args1
|
|
|
|
defaultAltTemplateId: 'defaultAlt', //This one for 1 arg
|
2017-05-21 22:52:55 +08:00
|
|
|
templates: { //You can add static templates here
|
|
|
|
'default': '<b>{0}</b>: {1}',
|
2017-05-26 06:51:34 +08:00
|
|
|
'defaultAlt': '{0}',
|
2017-05-21 22:52:55 +08:00
|
|
|
'example:important': '<h1>^2{0}</h1>'
|
|
|
|
},
|
|
|
|
fadeTimeout: 7000,
|
|
|
|
suggestionLimit: 5,
|
2017-05-22 04:51:51 +08:00
|
|
|
style: {
|
|
|
|
background: 'rgba(52, 73, 94, 0.7)',
|
|
|
|
width: '38%',
|
|
|
|
height: '240px',
|
|
|
|
}
|
2017-05-21 22:52:55 +08:00
|
|
|
};
|