integration/js/projet.js
author veltr
Thu, 06 Jun 2013 16:13:09 +0200
changeset 88 c91124908cd1
parent 16 c66274d0d850
permissions -rw-r--r--
Modified Edition to add remove annotations to the project

$(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 );
    });

});