Commit aad8f066 authored by PidgeyL's avatar PidgeyL
Browse files

remove zeroclipboard since it's broken anyway

parent 0254d0d0
Loading
Loading
Loading
Loading
+0 −10

File deleted.

Preview size limit exceeded, changes collapsed.

web/static/js/ZeroClipboard.swf

deleted100644 → 0
−6.43 KiB

File deleted.

+0 −6
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@ function loadPluginActions(){
  $.getJSON('/plugin/_get_cve_actions',{cve: $("#_cveID").val()},function(data){
    actions = data["actions"]
    $("#cve_actions").empty()
    $("#cve_actions").append('<button id="copy-button" name="copy"><span class="glyphicon glyphicon-copy" aria-hidden="true"></span> Copy to Clipboard</button><br />')
    for(var i=0; i < actions.length; i++){
      if(('icon' in actions[i]) || ('text' in actions[i])){
        add="<button id='action-"+i+"'>"
@@ -47,9 +46,4 @@ function loadPluginActions(){

$(document).ready(function() {
  loadPluginActions();

  var client = new ZeroClipboard($("#copy-button"), {
      moviePath: "/static/js/ZeroClipboard.swf"
    });
  client.setText(copyToClipboard());
});