Add bootstrap and jquery to gulp build

Currently we aren't using gulp-sass, but we are making use of the JS concat
This commit is contained in:
Tom Price
2017-05-09 13:38:39 +01:00
parent 41196b6447
commit 8ef755ce05
38 changed files with 60 additions and 5803 deletions

View File

@@ -47,7 +47,7 @@ $('#item-table').on('click', '.item-add', function () {
$('#item_quantity').val('');
$('#item_cost').val('');
$($(this).data('target')).modal('show');
$($(this).data('target'));
});
$('#item-table').on('click', '.item-edit', function () {
@@ -62,7 +62,7 @@ $('#item-table').on('click', '.item-edit', function () {
$('#item_quantity').val(fields.quantity);
$('#item_cost').val(fields.cost);
$($(this).data('target')).modal('show');
$($(this).data('target'));
});
$('body').on('submit', '#item-form', function (e) {