Merged [2512] from rjsparks@nostrum.com: Fix for ticket #374 (all in base.js) and removal of a vestigial 'save all changes' button from the iesg/agenda/documents page.

- Legacy-Id: 2518
Note: SVN reference [2512] has been migrated to Git commit 6d7b72d96d2986e1634cd0c936260d095dec127b
This commit is contained in:
Henrik Levkowetz 2010-09-16 10:09:20 +00:00
parent 28e0f982c5
commit d3292a84f0
2 changed files with 2 additions and 5 deletions

View file

@ -128,10 +128,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
{% if t.docs.s333 %}<tr class="header"><td colspan="5">3.3.3 For Action</td></tr>{% endif %}
{% for doc in t.docs.s333 %}{% include "iesg/agenda_documents_row.html" %}{%endfor%}
{% if user|in_group:"Secretariat,Area_Director" %}
<tr class="header"><td colspan="5"><input type="submit" value="Save All Changes"/></td></tr>
{% endif %}
{% endfor %}
</table>

View file

@ -33,7 +33,7 @@
function showBallot(draftName, editPositionUrl) {
var handleEditPosition = function() {
IETF.ballotDialog.hide();
window.location = editPositionUrl;
window.location = IETF.editPositionUrl;
};
var handleClose = function() {
IETF.ballotDialog.hide();
@ -58,6 +58,7 @@ function showBallot(draftName, editPositionUrl) {
IETF.ballotDialog.render();
}
document.getElementById("ballot_dialog_name").innerHTML = draftName;
IETF.editPositionUrl = editPositionUrl;
IETF.ballotDialog.show();