diff options
| author | low012 <low012@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2010-09-18 00:18:52 +0000 |
|---|---|---|
| committer | low012 <low012@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2010-09-18 00:18:52 +0000 |
| commit | f32bb5e51f84881ccc6d877e804b2d97ea66b54d (patch) | |
| tree | 3a7e5ec06be5727ea08939d088c8fac5de0c80da /htroot/yacyinteractive.html | |
| parent | 37baa8bae335ae4d57c21cffa549fbfb2f2302f5 (diff) | |
*) Changed image in Steering.html from linked image to embedded image because shutdown is so fast now, browsers can't load image before Yacy instance is gone already. Had to make image smaller since IE does not accept large Base64 encoded images.
*) Decreases wait time in Steering.html before first check since
*) HTML fixes
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7165 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/yacyinteractive.html')
| -rw-r--r-- | htroot/yacyinteractive.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/htroot/yacyinteractive.html b/htroot/yacyinteractive.html index 79823c1ea..000a7b4d0 100644 --- a/htroot/yacyinteractive.html +++ b/htroot/yacyinteractive.html @@ -11,7 +11,7 @@ function xmlhttpPost() { } function search(query) { - var xmlHttpReq = false; +// var xmlHttpReq = false; var self = this; if (window.XMLHttpRequest) { // Mozilla/Safari self.xmlHttpReq = new XMLHttpRequest(); @@ -31,7 +31,7 @@ function search(query) { function navget(list, name) { for (var i = 0; i < list.length; i++) { - if (list[i].facetname = name) return list[i]; + if (list[i].facetname == name) return list[i]; } } @@ -41,8 +41,8 @@ function updatepage(str) { var rsp = eval("("+str+")"); var firstChannel = rsp.channels[0]; var totalResults = firstChannel.totalResults.replace(/[,.]/,""); - var startIndex = firstChannel.startIndex; - var itemsPerPage = firstChannel.itemsPerPage; +// var startIndex = firstChannel.startIndex; +// var itemsPerPage = firstChannel.itemsPerPage; var navigation = firstChannel.navigation; var topics = navget(navigation, "topics"); |
