Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| border:0px; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| { | |
| "color_scheme": "Packages/LastNight2.tmTheme", | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "soda_classic_tabs": true, | |
| "soda_folder_icons": true, | |
| "theme": "Soda Dark.sublime-theme" | |
| } |
| $(document).ready(() => { | |
| if(!$('.alm-filter-nav').length){ | |
| return; | |
| } | |
| // Animation flag | |
| var alm_is_animating = false; | |
| // Set initial active item | |
| document.querySelector('.alm-filter-nav li:first-child').classList.add('active'); // Set initial active state |
| const tabs = () => { | |
| $(".nav-tabs a").click(function () { | |
| $('.nav-tabs a').removeClass('active'); | |
| $(this).tab('show').blur().addClass('active'); | |
| const link_text = $(this).html(); | |
| const tab_trigger = $(this).closest('.tabs-dropdown-wrap').prev('.tab-dropdown-trigger'); | |
| tab_trigger.html(link_text); | |
| if($(window).innerWidth() < 991){ | |
| $(this).closest('.tabs-dropdown-wrap').slideUp(); |
| { | |
| "name": "dev", | |
| "version": "1.0.0", | |
| "description": "Requires at least: WordPress 4.7 Tested up to: WordPress 5.0-trunk Version: 1.0", | |
| "main": "webpack.config.js", | |
| "scripts": { | |
| "build": "webpack", | |
| "watch": "webpack --watch", | |
| "dev": "webpack --watch --progress --mode=development", | |
| "prod": "webpack --watch --mode=production" |
| // Advanced Filtering | |
| $(document).ready(function () { | |
| var alm_is_animating = false; // Animating flag | |
| var buttons = $('.filter-tag .btn'); | |
| // Btn Click Event | |
| $(document).on('click', '.filterTrigger .btn', function (e) { | |
| e.preventDefault(); | |
| // Prevent any action while animating or with disabled class |
| <?php | |
| function mv_browser_body_class($classes) { | |
| global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone; | |
| if($is_lynx) $classes[] = 'lynx'; | |
| elseif($is_gecko) $classes[] = 'gecko'; | |
| elseif($is_opera) $classes[] = 'opera'; | |
| elseif($is_NS4) $classes[] = 'ns4'; | |
| elseif($is_safari) $classes[] = 'safari'; |
| # OSX | |
| .DS_Store | |
| # windows | |
| Desktop.ini | |
| # ignore everything in the root except the "wp-content" directory. | |
| !wp-content/ | |
| # ignore everything in the "wp-content" directory, except: |