Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan McMahon <emcmahonzx@gmail.com>2016-12-28 04:03:31 +0300
committerGitHub <noreply@github.com>2016-12-28 04:03:31 +0300
commit4fc9c496d53535e7146028612ea4b1408f2c4152 (patch)
tree2598469439b24e66def8886932d605367b5153e2
parentbb90a6f7b0901a89c6335e3d61d401bf7300f114 (diff)
remove widths
-rw-r--r--public/js/AdminCtrl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/AdminCtrl.js b/public/js/AdminCtrl.js
index 86c8834..5b3efb1 100644
--- a/public/js/AdminCtrl.js
+++ b/public/js/AdminCtrl.js
@@ -46,7 +46,7 @@ polr.controller('AdminCtrl', function($scope, $compile) {
"columns": [
{data: 'short_url', name: 'short_url'},
- {data: 'long_url', name: 'long_url', width: '30%'},
+ {data: 'long_url', name: 'long_url'},
{data: 'clicks', name: 'clicks'},
{data: 'created_at', name: 'created_at'},
{data: 'creator', name: 'creator'},
@@ -63,7 +63,7 @@ polr.controller('AdminCtrl', function($scope, $compile) {
"columns": [
{data: 'short_url', name: 'short_url'},
- {data: 'long_url', name: 'long_url', width: '50%'},
+ {data: 'long_url', name: 'long_url'},
{data: 'clicks', name: 'clicks'},
{data: 'created_at', name: 'created_at'}
]