Skip to content

Commit

Permalink
fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
medhatnar committed Sep 27, 2017
2 parents e51c55d + ab070c7 commit 9b22069
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.5.3
**2017-9-27**
* depreciated navy close icon, sidebars.

### 1.5.2
**2017-9-27**
* depreciated teal radio stack buttons.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2
1.5.3
4 changes: 4 additions & 0 deletions app/public/quartz.js
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,11 @@ vhxm.components.shared.sidebar.ui.container = {
view: function view(ctrl) {
return m('.c-sidebar.bg-white.shadow--gray' + (vhxm.components.shared.sidebar.state.isLoaded() ? '' : '.loader-slate.loader--cover-hide.loader--large.is-loading'), {
config: vhxm.components.shared.sidebar.state.isOpen() ? ctrl.animatorIn : ctrl.animatorOut
<<<<<<< HEAD
}, vhxm.components.shared.sidebar.state.isLoaded() ? [m('a.c-sidebar--close.icon-circle.icon-x-navy.icon--xsmall', {
=======
}, vhxm.components.shared.sidebar.state.isLoaded() ? [m('a.c-sidebar--close.icon-circle.icon-x-black.icon--xsmall', {
>>>>>>> master
onclick: function onclick() {
setTimeout(function () {
vhxm.components.shared.sidebar.toggle('close');
Expand Down
2 changes: 1 addition & 1 deletion dist/component-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ vhxm.components.shared.sidebar.ui.container = {
view: function view(ctrl) {
return m('.c-sidebar.bg-white.shadow--gray' + (vhxm.components.shared.sidebar.state.isLoaded() ? '' : '.loader-slate.loader--cover-hide.loader--large.is-loading'), {
config: vhxm.components.shared.sidebar.state.isOpen() ? ctrl.animatorIn : ctrl.animatorOut
}, vhxm.components.shared.sidebar.state.isLoaded() ? [m('a.c-sidebar--close.icon-circle.icon-x-navy.icon--xsmall', {
}, vhxm.components.shared.sidebar.state.isLoaded() ? [m('a.c-sidebar--close.icon-circle.icon-x-black.icon--xsmall', {
onclick: function onclick() {
setTimeout(function () {
vhxm.components.shared.sidebar.toggle('close');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vhx/quartz",
"version": "1.5.2",
"version": "1.5.3",
"description": "VHX Style Guide and JS Components.",
"homepage": "https://github.com/vhx/quartz",
"author": "VHX",
Expand Down
2 changes: 1 addition & 1 deletion quartz-js/components/sidebar/sidebar.ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ vhxm.components.shared.sidebar.ui.container = {
return m('.c-sidebar.bg-white.shadow--gray' + (vhxm.components.shared.sidebar.state.isLoaded() ? '' : '.loader-slate.loader--cover-hide.loader--large.is-loading'), {
config: vhxm.components.shared.sidebar.state.isOpen() ? ctrl.animatorIn : ctrl.animatorOut
}, vhxm.components.shared.sidebar.state.isLoaded() ? [
m('a.c-sidebar--close.icon-circle.icon-x-navy.icon--xsmall', {
m('a.c-sidebar--close.icon-circle.icon-x-black.icon--xsmall', {
onclick: function() {
setTimeout(function() {
vhxm.components.shared.sidebar.toggle('close');
Expand Down

0 comments on commit 9b22069

Please sign in to comment.