This commit is contained in:
parent
1b61cb2aab
commit
f019d2b994
|
@ -9,7 +9,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<?php
|
<?php
|
||||||
echo $this->Html->charset();
|
echo $this->Html->charset();
|
||||||
echo $this->Html->css(array('bootstrap.min','bootstrap-wysihtml5','dreamjob'));
|
echo $this->Html->css(array('bootstrap.min','bootstrap-wysihtml5','select2','select2-bootstrap','dreamjob'));
|
||||||
echo $this->Html->meta('icon', $this->Html->url('/favicon.ico'));
|
echo $this->Html->meta('icon', $this->Html->url('/favicon.ico'));
|
||||||
?>
|
?>
|
||||||
</head>
|
</head>
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- java script -->
|
<!-- java script -->
|
||||||
<?php
|
<?php
|
||||||
echo $this->Html->script(array('jquery.min', 'bootstrap.min', 'jquery-ui','bootstrap-wysihtml5', 'dreamjob'));
|
echo $this->Html->script(array('jquery.min', 'bootstrap.min', 'jquery-ui','bootstrap-wysihtml5','select2.min','select2_locale_de','dreamjob'));
|
||||||
?>
|
?>
|
||||||
<!-- extraScript -->
|
<!-- extraScript -->
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -41,6 +41,9 @@
|
||||||
|
|
||||||
$("#alert .alert").alert();
|
$("#alert .alert").alert();
|
||||||
$(where+' textarea').wysihtml5();
|
$(where+' textarea').wysihtml5();
|
||||||
|
$(where+' select').each(function(){
|
||||||
|
$(this).select2({allowClear: true});
|
||||||
|
});
|
||||||
$(where+' .dropdown-toggle').dropdown();
|
$(where+' .dropdown-toggle').dropdown();
|
||||||
|
|
||||||
$(where+" a").each(function(that){
|
$(where+" a").each(function(that){
|
||||||
|
|
Loading…
Reference in New Issue