mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:38:35 +08:00
21 lines
433 B
JavaScript
21 lines
433 B
JavaScript
|
(function() {
|
||
|
|
||
|
window.PagedownCustom = {
|
||
|
insertButtons: [
|
||
|
{
|
||
|
id: 'wmd-quote-post',
|
||
|
description: 'Quote Post',
|
||
|
execute: function() {
|
||
|
/* AWFUL but I can't figure out how to call a controller method from outside
|
||
|
*/
|
||
|
|
||
|
/* my app?
|
||
|
*/
|
||
|
return Discourse.__container__.lookup('controller:composer').importQuote();
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
}).call(this);
|