Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Sep 1, 2012
0 parents commit d6ba4cb
Show file tree
Hide file tree
Showing 6 changed files with 406 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
components
build
11 changes: 11 additions & 0 deletions Makefile
@@ -0,0 +1,11 @@

build: components
@component build

components: component.json
@component install --dev

clean:
rm -fr build components template.js

.PHONY: clean
5 changes: 5 additions & 0 deletions Readme.md
@@ -0,0 +1,5 @@

# clipboard-dom

Makes a DOM element (i.e. <button>) write to the system clipboard using ZeroClipboard

Binary file added ZeroClipboard.swf
Binary file not shown.
11 changes: 11 additions & 0 deletions component.json
@@ -0,0 +1,11 @@
{
"name": "clipboard-dom",
"description": "Makes a DOM element (i.e. <button>) write to the system clipboard",
"version": "0.0.1",
"keywords": ["copy", "clipboard", "dom", "click", "button"],
"dependencies": {
"component/classes": "*",
"component/emitter": "*"
},
"scripts": ["index.js"]
}

0 comments on commit d6ba4cb

Please sign in to comment.