webgme
Version:
Web-based Generic Modeling Environment
26 lines (19 loc) • 606 B
JavaScript
/*globals define */
/*jshint browser: true*/
/**
* @author rkereskenyi / https://github.com/rkereskenyi
*/
define([], function () {
'use strict';
var ISupportClipboard;
ISupportClipboard = function () {
};
ISupportClipboard.prototype.onCopy = function () {
this.logger.warn('ISupportClipboard.prototype.onCopy IS NOT IMPLEMENTED!!!');
return undefined;
};
ISupportClipboard.prototype.onPaste = function (data) {
this.logger.warn('ISupportClipboard.prototype.onPaste IS NOT IMPLEMENTED!!! DATA: ' + data);
};
return ISupportClipboard;
});