Fix ZeroClipboard path for the new version

This commit is contained in:
Joseph Schorr 2014-08-25 15:33:48 -04:00
parent 99d75bede7
commit 4b2a0b5063

View file

@ -3,7 +3,7 @@ var ROBOT_PATTERN = '^[a-zA-Z][a-zA-Z0-9]{3,29}$';
$.fn.clipboardCopy = function() {
if (zeroClipboardSupported) {
(new ZeroClipboard($(this), { 'moviePath': 'static/lib/ZeroClipboard.swf' }));
(new ZeroClipboard($(this), { 'swfPath': 'static/lib/ZeroClipboard.swf' }));
return true;
}