mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
15 lines
439 B
Plaintext
15 lines
439 B
Plaintext
<span class="document-name-bar white-text">
|
|
<% if defined?(f) %>
|
|
<span class="hide-on-small-only">Editing</span>
|
|
<div class="input-field inline">
|
|
<%=
|
|
f.text_field :title,
|
|
placeholder: 'Untitled document',
|
|
value: document.try(:name) || 'Untitled document',
|
|
class: 'white-text',
|
|
style: 'font-size: 150%; border-bottom: 1px solid white;'
|
|
%>
|
|
</div>
|
|
<% end %>
|
|
</span>
|