NOTE
This has stopped working due to an odd timing issue with a minuscule
-webkit-transition-duration
value firing awebkitTransitionEnd
Checkout a pure CSS version here: https://github.com/rgthree/google-loader-css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var filter; | |
filter = '' + | |
'-is:chat ' + | |
'-from:me ' + | |
// Only when we haven't applied a userlabel already; this works well as the last rule in your filters list | |
'has:nouserlabels ' + | |
'{"Order Number" "Order No" "Subtotal" "Shipping Address" "Billing Address" "Thank you for shopping" "Thank you for your order" "Shipping Confirmation" "has shipped"} ' + | |
''; | |
console.log("---------------\n RETAIL FILTER: \n" + filter.replace(/\s+/g, ' ')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TERM=gnome-256color | |
tput sgr0 | |
RED=$(tput setaf 1) | |
ORANGE=$(tput setaf 172) | |
BLUE=$(tput setaf 4) | |
WHITE=$(tput setaf 7) | |
GRAY=$(tput setaf 0) | |
BOLD=$(tput bold) | |
RESET=$(tput sgr0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>MooVeeStar Templates</title> | |
<meta charset="utf-8"> | |
<style> | |
.app-view > ul > li {margin-bottom:5px; border:1px solid #009;} | |
.app-view > ul > li [data-bind*="tags"] {display:none;} | |
.app-view > ul > li.-has-tags {border-color:#F00;} | |
.app-view > ul > li.-has-tags [data-bind*="tags"] {display:block;} |