Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ nbproject/
# Eclipse
.project
.settings/
test-results-junit/
4 changes: 3 additions & 1 deletion src/js/Clipboard.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';
import GUI from './gui.js';

/**
* Encapsulates the Clipboard logic, depending on web or nw
Expand Down Expand Up @@ -99,3 +99,5 @@ if (GUI.isNWJS()){
} else {
Clipboard._configureClipboardAsOther();
}

export default Clipboard;
Loading