Updated zero.clipboard to fix copy to clipboard function for requirejs.

Removed wrapper function.
pull/2/head
Taloth Saldono 10 years ago
parent 58f0e713fa
commit 00dddfeaf3

Binary file not shown.

File diff suppressed because it is too large Load Diff

@ -3,17 +3,20 @@ var StatusModel = require('../System/StatusModel');
var ZeroClipboard = require('zero.clipboard');
var Messenger = require('../Shared/Messenger');
module.exports = (function(){
$.fn.copyToClipboard = function(input) {
var moviePath = StatusModel.get('urlBase') + '/Content/zero.clipboard.swf';
var client = new ZeroClipboard(this, {moviePath : moviePath});
client.on('load', function(client){
client.on('dataRequested', function(client){
client.setText(input.val());
ZeroClipboard.config({
swfPath: StatusModel.get('urlBase') + '/Content/zero.clipboard.swf'
});
var client = new ZeroClipboard(this);
client.on('ready', function(e) {
client.on('copy', function(e) {
e.clipboardData.setData("text/plain", input.val());
});
client.on('complete', function(){
client.on('aftercopy', function() {
Messenger.show({message : 'Copied text to clipboard'});
});
});
};
}).call(this);

@ -1,13 +1,12 @@
'use strict';
define(
[
'vent',
'marionette',
'Commands/CommandController',
'Mixins/AsModelBoundView',
'Mixins/AsValidatedView',
'Mixins/CopyToClipboard'
], function (vent, Marionette, CommandController, AsModelBoundView, AsValidatedView) {

var vent = require('../../vent');
var Marionette = require('marionette');
var CommandController = require('../../Commands/CommandController');
var AsModelBoundView = require('../../Mixins/AsModelBoundView');
var AsValidatedView = require('../../Mixins/AsValidatedView');
require('../../Mixins/CopyToClipboard');
var view = Marionette.ItemView.extend({
template: 'Settings/General/GeneralViewTemplate',
@ -118,6 +117,5 @@ define(
AsModelBoundView.call(view);
AsValidatedView.call(view);
return view;
});
module.exports = view;

Loading…
Cancel
Save