This file contains 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
const $container = $('.container.well').eq(0) | |
const $tableLines = $container.find('.active_deliveries > tbody > tr') | |
const colorSuccess = '#009e45' | |
const colorError = 'red' | |
const overloadLimit = 3 | |
const courierMap = new Map() | |
let overloadedCouriers = [] | |
// create mapping |
This file contains 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
//- As you may know, Laravel 5 provides the Elixir to compile assets with no pain. | |
These mixins is for those of you who want to use Jade power combined with that of Laravel Blade. | |
The syntax mimic Blade statements, however identation differs in some cases. | |
- var newline = "\r\n" | |
- var loopIterator = '$iterator' | |
//- @extends mixin | |
Example: +extends('layouts/master') | |
Compiled: @extends('layouts/master') | |
mixin extends(file) | |
| @extends('#{file}') |