summaryrefslogtreecommitdiff
path: root/public/assets/js
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/js')
-rw-r--r--public/assets/js/app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/public/assets/js/app.js b/public/assets/js/app.js
index 0242437..7240c89 100644
--- a/public/assets/js/app.js
+++ b/public/assets/js/app.js
@@ -87,7 +87,9 @@ var app = (function() {
})()
$(".top").each(function(){
- $(".cell, .next", this).css({ 'height': ($(this).height() + 'px') })
+ var height = $(this).height()
+ console.log(height)
+ $(".cell, .next", this).css({ 'height': (height + 'px') })
})
$(".item").addClass("hidden")