[#427] Fixed bug in search and style in footer.
This commit is contained in:
@@ -83,7 +83,7 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<p class="getit-btn"><a href="{{page.root}}docs/" class="btn">Use the Library »</a></p>
|
<p class="getit-btn"><a href="{{page.root}}docs/" class="btn btn-default">Use the Library »</a></p>
|
||||||
<p>Recline.js is freely redistributable under the terms of the MIT license.</p>
|
<p>Recline.js is freely redistributable under the terms of the MIT license.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
|
|||||||
@@ -214,10 +214,8 @@ section {
|
|||||||
.recline-footer a {
|
.recline-footer a {
|
||||||
color:#CCC;
|
color:#CCC;
|
||||||
}
|
}
|
||||||
.recline-footer a.btn,
|
.recline-footer a.btn {
|
||||||
.recline-footer a.btn:hover {
|
color: #333333;
|
||||||
padding: 0px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tutorials .well {
|
.tutorials .well {
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ my.QueryEditor = Backbone.View.extend({
|
|||||||
},
|
},
|
||||||
onFormSubmit: function(e) {
|
onFormSubmit: function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var query = this.$el.find('.text-query input').val();
|
var query = this.$el.find('.search-query').val();
|
||||||
this.model.set({q: query});
|
this.model.set({q: query});
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user