Commit 597afb7c authored by Steven Verbeek's avatar Steven Verbeek

Started note attachment changes, and text changes

parent e5fa0bb1
...@@ -38,7 +38,9 @@ init: ...@@ -38,7 +38,9 @@ init:
}); });
$("#note_attachment").change(function(e){ $("#note_attachment").change(function(e){
alert($('input[type=file]').val()); var val = $('input[type=file]').val();
var filename = val.substr(val.lastIndexOf("/"));
$(".file_name").text(filename);
}); });
}, },
......
...@@ -1110,7 +1110,13 @@ p.time { ...@@ -1110,7 +1110,13 @@ p.time {
div.attachments { div.attachments {
position:relative; position:relative;
width: 350px; width: 350px;
height: 40px; height: 30px;
overflow:hidden;
margin:0 0 5px !important;
}
.file_name {
line-height:30px;
width:240px;
overflow:hidden; overflow:hidden;
} }
} }
\ No newline at end of file
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