Skip to content

Commit bb5b140

Browse files
committed
refactor(icon) : replace cog icon with play icon for execute action in tasks list
1 parent 9832684 commit bb5b140

30 files changed

+1030
-1197
lines changed

gulpfile.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ elixir(mix => {
1818
.less('totem.less', 'public/css/app.css')
1919
.webpack('app.js')
2020
.copy('resources/assets/img', 'public/img')
21-
.copy('node_modules/uikit/src/images', 'public/img')
21+
.copy('resources/assets/less/img', 'public/img')
2222
.copy('public', '../../../public/vendor/totem');
23-
// .copy('public', '../app/public/vendor/horizon');
2423
});

public/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/app.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/app.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/img/icons/play.svg

Lines changed: 4 additions & 0 deletions
Loading

resources/assets/js/components/lib/convertShapeToPath.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module.exports = function (node, type) {
9191
};
9292
case "polygon":
9393
case "polyline":
94-
var points = (node.getAttribute("points").match(regNumber) || []).map(Number);
94+
var points = (node.points.match(regNumber) || []).map(Number);
9595
if (points.length < 4) {
9696
return;
9797
}
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)