Cosmetic save

This commit is contained in:
Stephen Beaver 2016-02-02 14:01:18 -05:00
parent 250061b099
commit 0fa5f5ff2f
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,6 @@
<script src="/jquery/pfSense.js"></script>
<script src="/jquery/pfSenseHelpers.js"></script>
<script src="/sortable/sortable.js"></script>
<script type="text/javascript">
//<![CDATA[
// Un-hide the "Top of page" icons if the page is larger than the window

View File

@ -184,7 +184,9 @@ $section->addInput(new Form_Select(
null,
build_priv_list(),
true
))->addClass('multiselect')->setHelp('Hold down CTRL (PC)/COMMAND (Mac) key to select multiple items')->setAttribute('style', 'height:400px;');
))->addClass('multiselect')
->setHelp('Hold down CTRL (PC)/COMMAND (Mac) key to select multiple items');
// ->setAttribute('style', 'height:400px;');
if (isset($userid)) {
$section->addInput(new Form_Input(
@ -232,6 +234,7 @@ events.push(function() {
$('.multiselect').click(function() {
$('#pdesc').html('<span style="color: green;">' + descs[$(this).children('option:selected').index()] + '</span>');
});
});
//]]>
</script>