Commit 2585b348 authored by Nicolas Widart's avatar Nicolas Widart

Removing width and height

parent 89d52256
...@@ -38,8 +38,6 @@ ...@@ -38,8 +38,6 @@
<tr> <tr>
<th>{{ trans('core::core.table.created at') }}</th> <th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('media::media.table.filename') }}</th> <th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('media::media.table.width') }}</th>
<th>{{ trans('media::media.table.height') }}</th>
<th>{{ trans('core::core.table.actions') }}</th> <th>{{ trans('core::core.table.actions') }}</th>
</tr> </tr>
</thead> </thead>
...@@ -57,16 +55,6 @@ ...@@ -57,16 +55,6 @@
{{ $file->filename }} {{ $file->filename }}
</a> </a>
</td> </td>
<td>
<a href="{{ URL::route('dashboard.media.edit', [$file->id]) }}">
{{ $file->width }}
</a>
</td>
<td>
<a href="{{ URL::route('dashboard.media.edit', [$file->id]) }}">
{{ $file->height }}
</a>
</td>
<td> <td>
<div class="btn-group"> <div class="btn-group">
<a href="{{ URL::route('dashboard.media.edit', [$file->id]) }}" class="btn btn-default btn-flat"><i class="glyphicon glyphicon-pencil"></i></a> <a href="{{ URL::route('dashboard.media.edit', [$file->id]) }}" class="btn btn-default btn-flat"><i class="glyphicon glyphicon-pencil"></i></a>
...@@ -81,8 +69,6 @@ ...@@ -81,8 +69,6 @@
<tr> <tr>
<th>{{ trans('core::core.table.created at') }}</th> <th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('media::media.table.filename') }}</th> <th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('media::media.table.width') }}</th>
<th>{{ trans('media::media.table.height') }}</th>
<th>{{ trans('core::core.table.actions') }}</th> <th>{{ trans('core::core.table.actions') }}</th>
</tr> </tr>
</tfoot> </tfoot>
...@@ -126,8 +112,6 @@ $( document ).ready(function() { ...@@ -126,8 +112,6 @@ $( document ).ready(function() {
"sUrl": '<?php echo Module::asset('core', "js/vendor/datatables/{$locale}.json") ?>' "sUrl": '<?php echo Module::asset('core', "js/vendor/datatables/{$locale}.json") ?>'
}, },
"aoColumns": [ "aoColumns": [
null,
null,
null, null,
null, null,
{ "bSortable": false } { "bSortable": false }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment