Hide cut, copy and paste buttons from gecko browsers

This commit is contained in:
julmis 2003-11-03 23:53:49 +00:00
parent 9466f50707
commit 61d5f1854d

View file

@ -56,6 +56,10 @@ function HTMLArea(textarea, config) {
this._mdoc = document; // cache the document, we need it in plugins this._mdoc = document; // cache the document, we need it in plugins
this.doctype = ''; this.doctype = '';
} }
// Hide cut, copy and paste buttons from gecko browsers
if (HTMLArea.is_gecko) {
this.config.hideSomeButtons(" cut copy paste ");
}
}; };
// cache some regexps // cache some regexps