/** * Copyright 2014 Openstack Foundation * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. **/ jQuery(document).ready(function($){ var form = $('#search_distributions'); // initialize widgets $('#company_id',form).chosen({disable_search_threshold: 10}); //search params var name = $.QueryString["name"]; if(name!='undefined'){ $('#name').val(name); } var implementation_type_id = $.QueryString["implementation_type_id"]; if(implementation_type_id!='undefined'){ $('#implementation_type_id').val(implementation_type_id); } var company_id = $.QueryString["company_id"]; if(company_id!='undefined'){ $('#company_id').val(company_id); $("#company_id").trigger("chosen:updated"); } $(".delete-implementation").click(function(event){ event.preventDefault(); event.stopPropagation(); if(confirm("Are you sure to delete this?")){ var id = $(this).attr('data-id'); var is_draft = $(this).attr('data-is_draft'); var type = $(this).attr('data-class'); var url = type=='distribution'?'api/v1/marketplace/distributions':'api/v1/marketplace/appliances' url = url+'/'+id+'/'+is_draft; $.ajax({ type: "DELETE", url: url, contentType: "application/json; charset=utf-8", dataType: "json", success: function (data,textStatus,jqXHR) { window.location = listing_url; }, error: function (jqXHR, textStatus, errorThrown) { ajaxError(jqXHR, textStatus, errorThrown); } }); } return false; }); });