mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-18 18:17:03 +00:00
- Add clipboard.js to bower - Add pop-out section that populates with URL - Add copy to clipboard button, hover confirmation
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
// Package metadata for Meteor.js.
|
|
|
|
Package.describe({
|
|
name: "zenorocha:clipboard",
|
|
summary: "Modern copy to clipboard. No Flash. Just 2kb.",
|
|
version: "1.5.9",
|
|
git: "https://github.com/zenorocha/clipboard.js"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.addFiles("dist/clipboard.js", "client");
|
|
});
|