Coder Social home page Coder Social logo

ng-copix's Introduction

ngCopix - Copy to clipboard using AngularJS (without flash)

An AngularJS directive that uses native execCommand and updates the user's clipboard without any kind of Flash. Only the latest browsers support Selection API and Clipboard API.

How to get it?

Manual Download from GitHub

Download the compressed package from here.

Bower

bower install ng-copix --save

Support

  • IE 10+
  • Chrome 43+
  • Firefox 41+
  • Opera 29+

Usage

  1. Add ng-copix-min.js to your html file (index.html)
<script src="bower_components/angular/angular.min.js"></script>
  1. Set ngCopixboard as a dependency in your module(s)
var sampleApp = angular.module('sampleApp', ['ngCopixboard'])
  1. Add copix-range directive to the wanted element, example:
<button copix-range="valueToCopy">Copy</button>

or

<a href="" copix-range="valueToCopy">Copy</a>
  1. You can optionally provide a fallback function that gets called if query commands are unavailable:
<a href="" copix-range="valueToCopy" copix-fallback="fallback(copy)">Copy</a>

If the fallback function is defined to accept an argument named copy, that argument will be populated with the text to copy. For example:

  sampleApp.controller('sampleController', function ($scope) {
    //...
    $scope.fallback = function(copy) {
      window.prompt('Press ctrl+c to copy the text below.', copy);
    };
  });
  1. You can also optionally provide a function that gets called if query commands are working and the copy was successful. For example a basic success message:
<a href="" copix-range="valueToCopy" copix-after-copied="showFriendlyMessage()">Copy</a>

Controller:

  sampleApp.controller('sampleController', function ($scope) {
    //...
    $scope.showFriendlyMessage = function() {
      alert('Successfully copied to the clipboard!');
    };
  });

Examples

You can check out a live example here: Examples

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.