replace path modules to apps

This commit is contained in:
cuneytsenturk
2017-11-01 22:15:25 +03:00
parent cfbd5eba59
commit d7f53b52c1
22 changed files with 82 additions and 89 deletions

View File

@ -64,14 +64,14 @@
<script type="text/javascript">
$(document).ready(function() {
$('select[name=\'category\']').on('change', function() {
url = '{{ url('modules/category') }}';
url = '{{ url('apps/categories') }}';
var value = $(this).val();
if (value) {
url += '/' + encodeURIComponent(value);
} else {
url = '{{ url('modules/home') }}';
url = '{{ url('apps/home') }}';
}
location = url;