2013-02-20 13:15:50 -05:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
|