Merge pull request #2772 from MasterOdin/patch-1

Remove return from example addAction
This commit is contained in:
Alexandru Dima 2021-11-16 10:22:52 +01:00 committed by GitHub
commit 6535feb2a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,5 @@ editor.addAction({
// @param editor The editor instance is passed in as a convenience
run: function (ed) {
alert("i'm running => " + ed.getPosition());
return null;
}
});