Unverified Commit 11a2c21c by Scott Committed by GitHub

Merge pull request #623 from ProThoughts/patch-19

Added placeholder "Search..." for search box
parents e745030a b1af4c2b
......@@ -742,4 +742,14 @@ class qa_html_theme extends qa_html_theme_base
'</div>' .
'</div>';
}
/**
* Adds placeholder "Search..." for search box
*
* @since Snow 1.4
*/
public function search_field($search)
{
$this->output('<input type="text" ' .'placeholder="' . $search['button_label'] . '..." ' . $search['field_tags'] . ' value="' . @$search['value'] . '" class="qa-search-field"/>');
}
}
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