integration/js/projet.js
author ymh <ymh.work@gmail.com>
Wed, 22 Jul 2015 15:08:49 +0200
changeset 204 c69265f3d4e4
parent 16 c66274d0d850
permissions -rw-r--r--
Added tag V00.01.22 for changeset 765be3914ec6

$(function(){

    $('body').on('click focus', 'input[readonly]', function(e){
        $(this).select();
    });

//ZeroClipboard (fonctionne sous localhost)
    var clip = new ZeroClipboard( $('.clipboard'), {
      moviePath: ZeroClipboardMoviePath
    });
    clip.on( 'complete', function(client, args) {
      alert("Copied text to clipboard: " + args.text );
    });

});