See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |
| IM HEAD | |
| ############ | |
| <script> | |
| var elricco = {}; | |
| elricco.funcs = []; | |
| </script> | |
| MODULAUSGABE | |
| ############ | |
| <?php if (!rex::isBackend()): ?> |
| $.Redactor.prototype.counter = function () | |
| { | |
| return { | |
| init: function () | |
| { | |
| this.core.editor().on('keyup.redactor-plugin-counter', $.proxy(this.counter.count, this)); | |
| this.countContainer = $('<div class="redactor-styles counter"></div>'); | |
| this.core.editor().after(this.countContainer); | |
| this.counter.count(); | |
| }, |
| /** | |
| * Adjust contact form 7 radios and checkboxes to match bootstrap 4 custom radio structure. | |
| */ | |
| add_filter('wpcf7_form_elements', function ($content) { | |
| $content = preg_replace('/<label><input type="(checkbox|radio)" name="(.*?)" value="(.*?)" \/><span class="wpcf7-list-item-label">/i', '<label class="custom-control custom-\1"><input type="\1" name="\2" value="\3" class="custom-control-input"><span class="wpcf7-list-item-label custom-control-label">', $content); | |
| return $content; | |
| }); |