Repository: couchdb-fauxton Updated Branches: refs/heads/master 0a03e2e1a -> 8066f872a
fix relative path for zeroclipboard PR: #619 PR-URL: https://github.com/apache/couchdb-fauxton/pull/619 Reviewed-By: Benjamin Keen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/8066f872 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/8066f872 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/8066f872 Branch: refs/heads/master Commit: 8066f872a05c963823b1b65fa6d11fa5a000f25f Parents: 0a03e2e Author: Robert Kowalski <[email protected]> Authored: Wed Jan 20 13:10:40 2016 +0100 Committer: Robert Kowalski <[email protected]> Committed: Thu Jan 21 12:53:06 2016 +0100 ---------------------------------------------------------------------- app/addons/fauxton/components.react.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/8066f872/app/addons/fauxton/components.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/fauxton/components.react.jsx b/app/addons/fauxton/components.react.jsx index bd4ae5b..1eecb46 100644 --- a/app/addons/fauxton/components.react.jsx +++ b/app/addons/fauxton/components.react.jsx @@ -26,7 +26,7 @@ function (app, FauxtonAPI, React, ZeroClipboard, ReactBootstrap) { var Modal = ReactBootstrap.Modal; function getZeroClipboardSwfPath () { - return '../../dashboard.assets/ZeroClipboard.swf'; + return './dashboard.assets/ZeroClipboard.swf'; } // super basic right now, but can be expanded later to handle all the varieties of copy-to-clipboards
