Skip to content

Commit

Permalink
Item12952: impporved handling of bootstrap process
Browse files Browse the repository at this point in the history
  • Loading branch information
crawford committed Sep 1, 2014
1 parent 05b0759 commit b65a89d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions pub/System/ConfigurePlugin/configure.uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -843,12 +843,15 @@ function _id_ify(id) {
},
$root, 'load');
};
var changed = '';
var changed = ':<ul>';
if ($('#bootstrap_warning').length)
changed = " complete basic configuration" + changed;
$('.value_modified').each(function() {
var handler = $(this).data('value_handler');
changed += handler.spec.keys + ' ';
changed += '<li>' + handler.spec.keys + '</li>';
});

changed += '</ul>';

$('#confirm_note').html($('#saveMessage').html());
$('#confirm_note').append(changed);
$('#confirm_prompt').dialog(
Expand Down
2 changes: 1 addition & 1 deletion templates/configure.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ from this interface.
<div id="confirm_note"></div>
</div>
<div id="saveMessage" style="display:none">
Save Changes to:
Save changes to
</div>
</html>

0 comments on commit b65a89d

Please sign in to comment.