Skip to content
#

patterns

Here are 842 public repositories matching this topic...

AxlLind
AxlLind commented May 21, 2019

Clicking on a pattern which is unfinished (i.e status = ✘) provides no feedback on the website, nothing happens.

Clicking on the link multiple times appends the category to the URL multiple times. For example clicking on Abstract Factory three times yields the following url:

http://tmrts.com/go-patterns/creational/creational/creational/abstract_factory.md

Lastly, clicking on such an o

ivanbacher
ivanbacher commented Apr 17, 2017

Is it possible to use a gradient fill instead of a single colour?

var def = svg.append('defs');
var gradient = def.append('linearGradient')
    .attr('id', 'custom_id_1')
    .attr('x1', '50%')
    .attr('y1', '0%')
    .attr('x2', '50%')
    .attr('y2', '100%');

//set start
gradient.append('stop')
    .attr('offset', '0%')
    .attr('stop-color', 'white')

//set color at the

Improve this page

Add a description, image, and links to the patterns topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the patterns topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.