⌘T or ⌘P - go to file
⌘⌃P - go to project
⌘R - go to methods
<div class="slider"> | |
<!-- items can be any tag (e.g. <a>, <img>, <li>, etc.) --> | |
<div class="slide"></div> | |
<div class="slide"></div> | |
<div class="slide"></div> | |
</div> |
(function ($) { | |
var template = function (contents) { | |
return [ | |
'<div id="jquery-shadowbox" class="jquery-shadowbox">', | |
'<div id="jquery-shadowbox-video" class="jquery-shadowbox-video">', | |
contents, | |
'</div>', | |
'</div>' | |
].join(''); |
Notes:
Overview:
Features:
resolveOn
option to cy.visit
that specifies which event to resolve cy.visit
on. The option accepts load
or DOMContentLoaded
. Addresses #440cy.nextAll
, cy.nextUntil
, cy.parentsUntil
, cy.prevAll
, and [`cy.pr// ==UserScript== | |
// @name Github Project Status Colors | |
// @description Enhances GitHub Projects UI | |
// @match https://github.com/orgs/cypress-io/projects/10/views/* | |
// @version 12 | |
// @grant none | |
// @downloadURL https://gist.github.com/chrisbreiding/f41e16aa8c6876b13e7627de513c303d/raw/7de21eb9f36afdb0625065358ac002f77c2a573d/github-project-status-colors.user.js | |
// @updateURL https://gist.github.com/chrisbreiding/f41e16aa8c6876b13e7627de513c303d/raw/7de21eb9f36afdb0625065358ac002f77c2a573d/github-project-status-colors.user.js | |
// ==/UserScript== |
// servers.js | |
const express = require('express') | |
const path = require('path') | |
const http = require('http') | |
const httpPorts = [8081, 8082] | |
// const httpsPorts = [] | |
const createApp = (port) => { |