forked from JesseObrien/laravel-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
86 lines (68 loc) · 2.39 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
$(function(){
// Allow the user to turn comments off
$('.comments-toggle').on('click', function(event){
$('span.com').toggle();
});
// Call prettprint manually
prettyPrint();
// Shine up the HTML:: calls
var $html_elements = $("span.pln:contains('HTML')").addClass('typ');
var $url_elements = $("span.pln:contains('URL')").removeClass('pln').addClass('typ');
var $url_elements = $("span.pln:contains('SSH')").removeClass('pln').addClass('typ');
var $url_elements = $("span.pln:contains('DB')").addClass('typ');
// Allow the user to search for stuff on the page
// thanks to the jquery highlight plugin here:
// http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html
var search = function(){
var $searchValue = $.trim($('#search').val());
if ($searchValue === "" || $searchValue === undefined || $searchValue === null)
{
event.preventDefault();
return false;
}
// Get the existing number of values that are highlighted
var $values = $('span .highlight');
// If the search value is the same between more than one submit, go!
// btw, global variables are the best, aren't they?!
if (window.searchValue === $searchValue && $values.length > 0)
{
// global fuckin' iterator, man
if (window.searchIterator == null || window.searchIterator == $values.length)
{
window.searchIterator = 0;
}
// dat jquery animate
$('html, body').animate({
scrollTop: $($values[window.searchIterator]).offset().top - 50
}, 10);
// self-explaining code ftw
window.searchIterator++;
}
// global state anyone?
window.searchValue = $searchValue;
// re-highlight in case something's changed
// this is probably a pretty expensive DOM call but yolo
$("span").removeHighlight();
$("span").highlight($searchValue);
};
// I made this so it doesn't have to be a form event
// form events append their stuff to the uri
$('#search').on('keypress', function(event){
if (event.which == 13)
{
search();
}
});
// No form event to clutter the uri with
// your search terms
$('#search-button').click(search);
// Focus the user's cursor to the search box on page load
$('#search').focus();
// To the top functionality
$('#top-button').on('click', function(event){
$('html, body').animate({scrollTop: 0}, "medium");
return false;
});
// Initialize foundation, or else!
$(document).foundation();
});