mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
fix merge conflicts
This commit is contained in:
commit
f26ee30b74
3 changed files with 13 additions and 1 deletions
|
@ -68,6 +68,8 @@
|
|||
callback(suggestionObjects)
|
||||
})
|
||||
}
|
||||
}).on('typeahead:selected', function(e) {
|
||||
e.target.form.submit()
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
<div class="header-Outro">
|
||||
<div class="row content">
|
||||
<h1>Editing <%= @filename %></h1>
|
||||
<% if @filename.match /index.html$/ %>
|
||||
<h3 class="subtitle">Note: index.html is the first web page that gets loaded when users visit your site. Make sure there are <a href="http://www.w3schools.com/html/html_links.asp" target="_blank">HTML links</a> to your other pages from this page.</h3>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -132,6 +132,10 @@
|
|||
display: inline;
|
||||
font-size: 11px;
|
||||
}
|
||||
.hidden {
|
||||
display:none!important;
|
||||
visibility:hidden
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -154,7 +158,8 @@
|
|||
<li>
|
||||
<form id="search_criteria" onsubmit="getPage(1); return false">
|
||||
<input type="hidden" name="sort_by" value="<%= params[:sort_by] %>">
|
||||
<input class="typeahead" name="tag" type="text" placeholder="Browse by tag..." value="<%= params[:tag] %>" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" dir="auto" />
|
||||
<input class="typeahead" name="tag" type="text" placeholder="Browse by tag..." value="<%= params[:tag] %>" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" />
|
||||
<input class="hidden" type="submit" tabindex="-1"/>
|
||||
</form>
|
||||
</li>
|
||||
<li>
|
||||
|
@ -220,6 +225,8 @@
|
|||
callback(suggestionObjects)
|
||||
})
|
||||
}
|
||||
}).on('typeahead:selected', function(e) {
|
||||
e.target.form.submit()
|
||||
})
|
||||
|
||||
function toggleFollow(id) {
|
||||
|
|
Loading…
Add table
Reference in a new issue