Skip to content

Commit 41b7424

Browse files
committed
tvguide
1 parent 8b921b2 commit 41b7424

File tree

15 files changed

+3832
-214
lines changed

15 files changed

+3832
-214
lines changed

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"slick-carousel": "~1.5.8"
1616
},
1717
"devDependencies": {
18-
"jquery-validation": "~1.13.1"
18+
"jquery-validation": "~1.13.1",
19+
"jquery-mousewheel": "~3.1.13"
1920
}
2021
}

build/css/screen.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/img/icons/live.png

1.05 KB
Loading

build/img/sprite.png

192 Bytes
Loading

build/js/app.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,23 @@ $(document).ready(function() {
203203

204204
// lists
205205

206-
var letters = "абвгдежзиклмнопрстуфхцчшщэюя";
206+
var letters = "abcdefghijklmnoprstuvwxyz";
207207
$.each($('ol'), function() {
208208
var item = $(this).find('li');
209209
item.each(function(i){
210210
$(this).attr("mark", letters[i] + ")");
211211
});
212212
});
213213

214+
// horizontal mousewheel scroll event
215+
// $('.js-tvguide').mousewheel(function(event, delta) {
216+
217+
// this.scrollLeft -= (delta * 25);
218+
219+
// event.preventDefault();
220+
221+
// });
222+
214223

215224

216225
});

build/js/main.js

+18-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/textsample.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
<!-- container -->
164164
<div class="container">
165165
<!-- top -->
166-
<div class="top">
166+
<div class="top top_dark">
167167
<div class="center">
168168
<!-- breadcrumbs -->
169169
<nav class="breadcrumbs">

0 commit comments

Comments
 (0)