From 1d89b83cf0aada9b8011bc5825762c07b48216ea Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 4 Nov 2007 18:27:28 +0000 Subject: [PATCH] "No matching notes" is now orange instead of red. --- static/js/Wiki.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/Wiki.js b/static/js/Wiki.js index 81615e1..50ded08 100644 --- a/static/js/Wiki.js +++ b/static/js/Wiki.js @@ -985,7 +985,7 @@ Wiki.prototype.search = function ( event ) { Wiki.prototype.display_search_results = function ( result ) { // if there are no search results, indicate that and bail if ( !result || result.notes.length == 0 ) { - this.display_error( "No matching notes." ); + this.display_message( "No matching notes." ); return; }