Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed add product to add release fixes bug 770876 #678

Merged
1 commit merged into from Jul 5, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions webapp-php/application/views/admin/branch_data_sources.php
Expand Up @@ -22,15 +22,15 @@

<div id="data_sources">
<ul id="data_sources_nav">
<li><a id="add_product_tab" href="#add_products"><span>Add Product</span></a></li>
<li><a id="add_release_tab" href="#add_release"><span>Add Release</span></a></li>
<li><a href="#incompleteentries"><span>Incomplete Entries</span></a></li>
<li><a href="#products"><span>Products</span></a></li>
<li><a href="#noncurrententries"><span>Non-Current Entries</span></a></li>
</ul>

<p id="loading-bds"><img src="/img/icons/ajax-loader.gif" width="" height="" alt="loading animation" /></p>

<div id="add_products" class="ui-tabs-hide">
<div id="add_release" class="ui-tabs-hide">
<?php include Kohana::find_file('views', 'admin/branch_data_sources/add_products') ?>
</div>

Expand Down
Expand Up @@ -4,7 +4,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
?>
<form name="add_product" id="add_product" action="" method="post">
<legend>Add A New Product Below</legend>
<legend>Add A New Product Release</legend>
<fieldset>
<div class="field">
<label for="product">Product Name:</label>
Expand Down
2 changes: 1 addition & 1 deletion webapp-php/js/socorro/admin.js
Expand Up @@ -29,7 +29,7 @@ $(document).ready(function(){
$(".success, .error").remove();
};

$("#add_product_tab").click(function() {
$("#add_release_tab").click(function() {
clearMessages();
});

Expand Down