Search Expression for all PRs created since date reviewed by me but not authored by me.
is:pr created:>=2018-03-01 reviewed-by:cathyxz -author:cathyxz
| // Scraping Made Easy with jQuery and SelectorGadget | |
| // (http://blog.dtrejo.com/scraping-made-easy-with-jquery-and-selectorga) | |
| // by David Trejo | |
| // | |
| // Install node.js and npm: | |
| // http://joyeur.com/2010/12/10/installing-node-and-npm/ | |
| // Then run | |
| // npm install jsdom jquery http-agent | |
| // node numresults.js | |
| // |
| #!/bin/sh | |
| # Pre-merge hook that lists all commits and asks you if you really want to | |
| # merge them in. For release branches only. | |
| case $2 in | |
| merge) | |
| branch=$(grep -o "release/[0-9]\.[0-9]" $1) | |
| if [[ ! -z $branch ]] | |
| then |
| #!/bin/sh | |
| count=`git diff HEAD | grep '+.*console\.log' | wc -l | awk '{print $1}'` | |
| if [[ "$count" -ge 1 ]]; then | |
| echo "Please remove console.log() statements from your changes before committing." | |
| echo "Refusing to commit changes." | |
| git diff HEAD | grep '+.*console\.log' | |
| exit 1 | |
| fi |
| { | |
| "items": [{ | |
| "name": "Afghanistan", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "land Islands", | |
| "code": "AX" | |
| } | |
| ] |
| Failures: | |
| 1) ValidatorFeatures amp-facebook-page/0.1/test/validator-amp-facebook-page.html | |
| Message: | |
| AssertionError: | |
| amp-facebook-page/0.1/test/validator-amp-facebook-page.out:1:0 | |
| expected: | |
| PASS | |
| | <!-- | |
| | Copyright 2018 The AMP HTML Authors. All Rights Reserved. | |
| | |
Search Expression for all PRs created since date reviewed by me but not authored by me.
is:pr created:>=2018-03-01 reviewed-by:cathyxz -author:cathyxz
CreateCustomEvent events don't bubble by default. So if you listen to something on the window, and create a custom event to test it, you need to make sure that the event bubbles.
| AMP.setLogLevel(4) |
| <amp-list class="i-amphtml-element i-amphtml-layout-fill i-amphtml-layout-size-defined i-amphtml-layout fill-list fill-list-show" [class]="searchState.inputValue == '' ? 'fill-list' : 'fill-list fill-list-show'" credentials="include" [src]="searchState.inputValue ? autosuggest.autoSuggestSearch + encodeURIComponent(searchState.inputValue) : autosuggest.emptyAndInitialTemplateJson" layout="fill" single-item="data" items="data" id="auto-prom-suggest" noloading="" i-amphtml-layout="fill" aria-live="polite" src="https://m.aliexpress.com/api/search/auto-suggests/dress"> | |
| <template type="amp-mustache"> | |
| <div class="s-seller"> | |
| {{#autoSuggestPromList}} | |
| <a href="{{action}}&spm=a2g0n.home-amp" class="auto"> | |
| <div class="prom flex align-center"> | |
| {{#icon}} | |
| <amp-img src="{{icon}}" class="prom-image" alt="image" width="60" height="30" layout="fixed"></amp-img> | |