Skip to content

Commit 0247f0c

Browse files
committed
massive use of unpoly up-follow let's see what happens :-)
1 parent a552075 commit 0247f0c

File tree

75 files changed

+204
-201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+204
-201
lines changed

public/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/compilers.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,8 @@ up.compiler('.spinner', function(element) {
179179
hide()
180180
});
181181

182+
up.proxy.config.slowDelay=3
183+
182184
/*
183185
- add a tags class to select to enable selectize on it
184186
- add data-allow-new-tags to allow the creation of new tags

resources/sass/spinner.scss

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
.spinner
22
{
3-
left: 50%;
4-
transform: translateX(-50%);
3+
/*left: 50%;*/
4+
/*transform: translateX(-50%);*/
55
top:0;
6-
padding: 1rem;
7-
margin: 1rem;
8-
border-radius: 5px;
6+
padding: 1.5rem;
7+
margin: auto;
8+
width: 100%;
9+
910
background-color: #adbcdc;
1011
color: #000;
1112
display: none;

resources/views/actions/action.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
<div class="name mr-2">
16-
<a href="{{ route('groups.actions.show', [$action->group, $action]) }}">
16+
<a up-follow href="{{ route('groups.actions.show', [$action->group, $action]) }}">
1717
{{ $action->name }}
1818
</a>
1919
</div>
@@ -33,7 +33,7 @@
3333

3434
<br/>
3535
<div class="group-name">
36-
<a href="{{ route('groups.show', [$action->group_id]) }}">
36+
<a up-follow href="{{ route('groups.show', [$action->group_id]) }}">
3737
<span class="badge badge-secondary">
3838
@if ($action->group->isOpen())
3939
<i class="fa fa-globe" title="{{trans('group.open')}}"></i>

resources/views/actions/history.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</p>
1616
@endforeach
1717

18-
<a href="{{route('groups.actions.show', [$group, $action])}}" class="btn btn-primary">{{trans('messages.back_to')}} "{{$action->name}}"</a>
18+
<a up-follow href="{{route('groups.actions.show', [$group, $action])}}" class="btn btn-primary">{{trans('messages.back_to')}} "{{$action->name}}"</a>
1919

2020
</div>
2121

resources/views/actions/index-list.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<div class="mb-2">
1212
<div class="btn-group" role="group">
13-
<a href="?type=grid" class="btn btn-outline-primary"><i class="fa fa-calendar"></i> {{trans('messages.grid')}}</a>
14-
<a href="?type=list" class="btn btn-primary"><i class="fa fa-list"></i> {{trans('messages.list')}}</a>
13+
<a up-follow href="?type=grid" class="btn btn-outline-primary"><i class="fa fa-calendar"></i> {{trans('messages.grid')}}</a>
14+
<a up-follow href="?type=list" class="btn btn-primary"><i class="fa fa-list"></i> {{trans('messages.list')}}</a>
1515
</div>
1616
</div>
1717

resources/views/actions/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<div class="toolbox d-md-flex mb-4">
1111
<div class="mb-2">
1212
<div class="btn-group" role="group">
13-
<a href="?type=grid" class="btn btn-primary"><i class="fa fa-calendar"></i> {{trans('messages.grid')}}</a>
14-
<a href="?type=list" class="btn btn-outline-primary"><i class="fa fa-list"></i> {{trans('messages.list')}}</a>
13+
<a up-follow href="?type=grid" class="btn btn-primary"><i class="fa fa-calendar"></i> {{trans('messages.grid')}}</a>
14+
<a up-follow href="?type=list" class="btn btn-outline-primary"><i class="fa fa-list"></i> {{trans('messages.list')}}</a>
1515
</div>
1616
</div>
1717

resources/views/actions/show.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
<div class="meta mb-3">
4545
{{trans('messages.started_by')}}
4646
<span class="user">
47-
<a href="{{ route('users.show', [$action->user]) }}">{{ $action->user->name}}</a>
47+
<a up-follow href="{{ route('users.show', [$action->user]) }}">{{ $action->user->name}}</a>
4848
</span>
4949
{{trans('messages.in')}}
5050
<strong>
51-
<a href="{{ route('groups.show', [$action->group]) }}">{{ $action->group->name}}</a>
51+
<a up-follow href="{{ route('groups.show', [$action->group]) }}">{{ $action->group->name}}</a>
5252
</strong>
5353
{{ $action->created_at->diffForHumans()}}
5454
</div>

resources/views/admin/groupadmins/index.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@
2929
@foreach( $users as $user )
3030
<tr>
3131
<td>
32-
<a href="{{ route('users.show', $user) }}"> {{ $user->name }}</a>
32+
<a up-follow href="{{ route('users.show', $user) }}"> {{ $user->name }}</a>
3333
</td>
3434

3535
<td style="max-width: 150px; overflow: hidden;text-overflow: ellipsis;">
36-
<a href="{{ route('users.show', $user) }}"> {{ $user->email }}</a>
36+
<a up-follow href="{{ route('users.show', $user) }}"> {{ $user->email }}</a>
3737
</td>
3838

3939
<td data-order="{{ $user->created_at }}">
40-
<a href="{{ route('users.show', $user) }}">{{ $user->created_at }}</a>
40+
<a up-follow href="{{ route('users.show', $user) }}">{{ $user->created_at }}</a>
4141
</td>
4242

4343
<td data-order="{{ $user->updated_at }}">
44-
<a href="{{ route('users.show', $user) }}">{{ $user->updated_at }}</a>
44+
<a up-follow href="{{ route('users.show', $user) }}">{{ $user->updated_at }}</a>
4545
</td>
4646

4747
<td style="max-width: 50px; overflow: hidden;text-overflow: ellipsis;">

resources/views/admin/settings/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
<div class="alert alert-danger" role="alert">
125125
This feature is now enabled in your .env file!
126-
<a href="https://dos.agorakit.org">Read the docs</a> to understand this feature and how to configure/upgrade it.
126+
<a up-follow href="https://dos.agorakit.org">Read the docs</a> to understand this feature and how to configure/upgrade it.
127127
</div>
128128

129129

0 commit comments

Comments
 (0)