From 07b89725d8072b3aa67c78b78c2446a12cfa1a61 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sat, 4 Oct 2014 19:57:31 +0900 Subject: [PATCH] Adding history slider callback stub --- client/html/index.html | 6 ++++-- client/scripts/application.js | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/client/html/index.html b/client/html/index.html index b073fa4..fdef170 100644 --- a/client/html/index.html +++ b/client/html/index.html @@ -125,8 +125,10 @@
-
- + +
+ +
diff --git a/client/scripts/application.js b/client/scripts/application.js index 38a7e68..407a50c 100644 --- a/client/scripts/application.js +++ b/client/scripts/application.js @@ -138,6 +138,10 @@ }); } + function onHistory(arg) { + + } + function outputResults(results, count) { var searchResultCnt = String(results.length); if (results.length < count) { @@ -191,6 +195,7 @@ }); }); + $('#history').on('slideStop', onHistory); $('#learnKeyword').click(onLearn); $('#keywordToLearn').bind('input', function() { $('#learnKeyword').prop('disabled', !$(this).val());