Remove 90-autoresize.js and extraneous css
authorMarius Gavrilescu <marius@ieval.ro>
Wed, 11 Feb 2015 16:59:05 +0000 (18:59 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Wed, 11 Feb 2015 16:59:05 +0000 (18:59 +0200)
css/custom.css
js/90-autoresize.js [deleted file]

index a6b7d0e3e238dfe16c0665cfde048ef93f32aefd..73affe610e019a885dc9642812c5e948f7b54a4c 100644 (file)
@@ -11,26 +11,6 @@ footer{
        color: #777;
 }
 
-#logo {
-       margin: 5em auto 2em;
-       display: block;
-}
-
-.txtstuff {
-    overflow: hidden;
-}
-
-.hiddendiv {
-    display: none;
-    white-space: pre-wrap;
-    word-wrap: break-word;
-    overflow-wrap: break-word; /* future version of deprecated 'word-wrap' */
-}
-
-a.thumbnail {
-       border: none !important;
-}
-
 div.container-fluid {
        padding: 0 15px;
 }
@@ -51,11 +31,6 @@ a.dropdown-toggle{
        table-layout: fixed;
 }
 
-#clock{
-       float: right;
-       margin-right: 1em;
-}
-
 nav li{
        padding: 5px;
 }
diff --git a/js/90-autoresize.js b/js/90-autoresize.js
deleted file mode 100644 (file)
index e40ef4e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-(function(){
-       'use strict';
-
-       $( document ).ready(function() {
-               var hiddenDiv = $(document.createElement('div'));
-
-               hiddenDiv.addClass('hiddendiv common');
-
-               $('body').append(hiddenDiv);
-
-               $("textarea.autoresize").on('keyup', function () {
-                       var content = $(this).val();
-
-                       content = content.replace(/\n/g, '<br>');
-                       hiddenDiv.html(content + '<br class="lbr">');
-
-                       $(this).css('height', hiddenDiv.height()+23);
-               });
-       });
-})();
This page took 0.012172 seconds and 4 git commands to generate.