integration/js/projet.js
author durandn
Thu, 16 Apr 2015 16:16:08 +0200
changeset 191 7eef5c1eee8c
parent 16 c66274d0d850
permissions -rw-r--r--
fix url tags for embed_iframe in templates

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

});