1.1.0 • Published 5 years ago

@informatix8/source-attribution v1.1.0

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

Source Attribution

Append content to copied clipboard text.

Features

  • Append your product name and source URL to copied text from your web page
  • Custom copied character count threshold for addiing the content
  • Tag copy events in Google Analytics

Dependencies

  • Lodash merge function

Usage

Install

npm install @informatix8/source-attribution --save-dev

CDN

<script src="https://unpkg.com/@informatix8/source-attribution/dist/source-attribution.all.umd.js"></script>

Vanilla Javascript

new SourceAttribution({
  productName: 'My Product'
});

Add Google Analytics

Google Analytics instructs that you add their javascript to the <head> of your document.

<head>
    <script async="async" src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxxx-x"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
      gtag('config', 'UA-xxxxxxxxx-x');
    </script>
</head>

Development

npm run dev

Build

npm run build

Release

npm run build
git tag -a vX.Y.Z
git push origin master
git push origin --tags
npm publish --access=public .