Skip to content

Commit

Permalink
Merge pull request #58 from Codeinwp/update
Browse files Browse the repository at this point in the history
Hot Patch
  • Loading branch information
Soare-Robert-Daniel authored Feb 4, 2022
2 parents d95c759 + e0d7930 commit 0dae22e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Logo Maker WordPress Plugin
* Plugin URI: https://github.com/Codeinwp/logo-maker
* Description: Logo Maker as plugin for WordPress
* Version: 1.11.4
* Version: 1.12.0
* Author: Soare Robert Daniel
*
* @package logo-maker
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logo-maker-plugin",
"description": "A simple editor for creating logos - with support for WordPress.",
"version": "1.11.3",
"version": "1.12.0",
"scripts": {
"start": "snowpack dev --polyfill-node",
"start-plugin": "wp-scripts start --hot",
Expand Down
7 changes: 2 additions & 5 deletions src/engine/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ export function buildPipelines(_props: StoreProps, _fontRenderers?: FontRenderer
.addTo(parent)
.size(container.width, container.height)
.viewbox(vb.x, vb.y, vb.width, vb.height)
.css( {backgroundColor: container.style.color})
.attr('fill', container.style.color)
// .css("opacity", 0)
.css('background', container.style.color )
.addClass("svg-animations")

/**
Expand Down Expand Up @@ -106,8 +104,7 @@ export function buildPipelines(_props: StoreProps, _fontRenderers?: FontRenderer
.addTo(parent)
.size(container.width, container.height)
.viewbox(vb.x, vb.y, vb.width, vb.height)
.css({ backgroundColor: container.style.color})
.attr('fill', container.style.color)
.css('background', container.style.color )

/**
* Create the base shapes & align them
Expand Down

0 comments on commit 0dae22e

Please sign in to comment.