Only show copy button in Opera since it does not support clipboard interaction from JS, fixes #3

This commit is contained in:
Jordi Boggiano
2012-01-15 18:05:43 +01:00
parent 5d168aa4d8
commit faef780f96
+3 -1
View File
@@ -95,7 +95,9 @@
// events // events
editor.getSession().selection.on('changeCursor', updateStatusBar); editor.getSession().selection.on('changeCursor', updateStatusBar);
editor.getSession().selection.on('changeSelection', prepareClippyButton); if (window.navigator.userAgent.indexOf('Opera/') === 0) {
editor.getSession().selection.on('changeSelection', prepareClippyButton);
}
// commands // commands
editor.commands.addCommand({ editor.commands.addCommand({