Skip to content
Snippets Groups Projects
Verified Commit 6e0a9f47 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

Add * in title when edit and dirty fix to change default title

parent b82afef1
No related branches found
No related tags found
1 merge request!29Améliorations diverses d'Etherpad
......@@ -44,6 +44,7 @@ RUN curl -SL https://github.com/ether/etherpad-lite/archive/${ETHERPAD_VERSION}.
ep_font_family \
ep_headings2 \
ep_hide_referrer \
ep_pad_activity_nofication_in_title \
ep_pads_stats \
ep_page_view \
ep_set_title_on_pad \
......@@ -60,7 +61,10 @@ RUN curl -SL https://github.com/ether/etherpad-lite/archive/${ETHERPAD_VERSION}.
# Less margin for comment zone
sed -i 's|calc(100% - 150px)|calc(100% - 10px)|g' src/static/skins/colibris/src/layout.css && \
# Enlarge lines
echo '#innerdocbody > div { margin-right: 0 !important; }' >> src/static/skins/colibris/src/pad-editor.css
echo '#innerdocbody > div { margin-right: 0 !important; }' >> src/static/skins/colibris/src/pad-editor.css && \
# Change default hard-coded pad title
sed -i 's|Untitled Pad|Nouveau pad|g' node_modules/ep_set_title_on_pad/templates/title.ejs && \
sed -i 's|Untitled Pad|Nouveau pad|g' static/tests/frontend/specs/atest.js
# construction de l'image finale
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment