This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elixir(function(mix) { | |
| mix.webpack('main.js') | |
| .less('app.less') | |
| .copy('./node_modules/uikit/dist/fonts', 'public/build/fonts') | |
| .copy('./node_modules/mdi/fonts', 'public/build/fonts') | |
| .version(['css/app.css', 'js/main.js']) | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elixir(function(mix) { | |
| mix.webpack('main.js') | |
| .less('app.less') | |
| .copy('./node_modules/uikit/dist/fonts', 'public/build/fonts') | |
| .copy('./node_modules/mdi/fonts', 'public/build/fonts') | |
| .version(['css/app.css', 'js/main.js']) | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dropzone.options.myAwesomeDropzone = { | |
| dictDefaultMessage: 'Перетяните сюда файлы для загрузки', | |
| paramName: "file", // The name that will be used to transfer the file | |
| maxFilesize: 5, | |
| addRemoveLinks: true, | |
| dictResponseError: 'Server not Configured', | |
| acceptedFiles: ".png,.jpg,.gif,.bmp,.jpeg", | |
| init:function(){ | |
| var self = this; | |
| // config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('app') | |
| @section('main') | |
| <div class="row well"> | |
| <div class="col-sm-3 col-sm-offset-2"> | |
| <label for="estimate">Кажется, часов</label> | |
| <input type="number" min="0.1" step="0.1" data-stake="{{ $stake }}" id="estimate"> | |
| </div> | |
| <div class="col-sm-3"> |