DEV: correct argument names for addGlobalNotice (#14582)
This commit is contained in:
parent
228264d17c
commit
be7dcf694e
|
@ -1243,8 +1243,8 @@ class PluginApi {
|
||||||
* api.addGlobalNotice("text", "foo", { html: "<p>bar</p>" })
|
* api.addGlobalNotice("text", "foo", { html: "<p>bar</p>" })
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
addGlobalNotice(id, text, options) {
|
addGlobalNotice(text, id, options) {
|
||||||
addGlobalNotice(id, text, options);
|
addGlobalNotice(text, id, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue