private function _show_enqueued($type, $fields)
    {
        ob_start();
        ?>
		<div class="bwp-minify-table-wrapper">
			<div class="bwp-minify-table-scroller">
				<table class="bwp-minify-detector-table" cellpadding="0"
					cellspacing="0" border="0">
<?php 
        if ('script' == $type) {
            $this->detector->show_detected_scripts();
        } else {
            $this->detector->show_detected_styles();
        }
        ?>
				</table>
			</div>
		</div>

		<div class="bwp-sidebar">
			<ul>
<?php 
        foreach ($fields as $field => $label) {
            $value = isset($_POST[$field]) ? trim(strip_tags($_POST[$field])) : $this->options[$field];
            ?>
				<li>
					<a class="input-handle" data-field="<?php 
            echo $field;
            ?>
"
						href="#"><span class="bwp-sign">+</span> <?php 
            echo $label;
            ?>
</a>
					<textarea name="<?php 
            echo $field;
            ?>
"
						cols="20" rows="5"><?php 
            esc_html_e($value);
            ?>
</textarea>
				</li>
<?php 
        }
        ?>
			</ul>
		</div>
		<div style="clear: both"></div>
<?php 
        $output = ob_get_contents();
        ob_end_clean();
        return $output;
    }