17 lines
507 B
PHP
Executable File
17 lines
507 B
PHP
Executable File
<?php if($extView = $this->getExtViewFile(__FILE__)){include $extView; return helper::cd();}?>
|
|
<?php
|
|
css::import($defaultTheme . 'chosen.css');
|
|
js::import($jsRoot . 'jquery/chosen/chosen.min.js');
|
|
?>
|
|
<style>
|
|
#colorbox, #cboxOverlay, #cboxWrapper{z-index:9999;}
|
|
</style>
|
|
<script>
|
|
noResultsMatch = '<?php echo $lang->noResultsMatch;?>';
|
|
$(document).ready(function()
|
|
{
|
|
$("#productID").chosen({no_results_text: noResultsMatch});
|
|
$("#projectID").chosen({no_results_text: noResultsMatch});
|
|
});
|
|
</script>
|