Skip to content

Commit

Permalink
Recompiled JS and CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
mrg2001 committed Apr 27, 2016
1 parent b5958c1 commit 1e6078d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions dist/w2ui-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -2695,6 +2695,7 @@ button.w2ui-btn-small:focus:before {
bottom: 2px;
left: 2px;
right: 2px;
pointer-events: none;
}
.w2ui-sidebar .w2ui-sidebar-div .w2ui-selected.w2ui-inactive:before {
border: 1px dashed transparent !important;
Expand Down
2 changes: 1 addition & 1 deletion dist/w2ui-dark.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/w2ui-fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -2786,7 +2786,7 @@ w2utils.event = {

function getColorHTML(options) {
var color = options.color;
var html = '<div class="w2ui-color" onmousedown="event.stopPropagation()">'+
var html = '<div class="w2ui-color" onmousedown="event.stopPropagation(); event.preventDefault()">'+ // prevent default is needed otherwiser selection gets unselected
'<table cellspacing="5"><tbody>';
for (var i = 0; i < pal.length - 1; i++) {
html += '<tr>';
Expand Down
2 changes: 1 addition & 1 deletion dist/w2ui-fields.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/w2ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -2686,6 +2686,7 @@ button.w2ui-btn-small:focus:before {
bottom: 2px;
left: 2px;
right: 2px;
pointer-events: none;
}
.w2ui-sidebar .w2ui-sidebar-div .w2ui-selected.w2ui-inactive:before {
border: 1px dashed transparent !important;
Expand Down
2 changes: 1 addition & 1 deletion dist/w2ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -2786,7 +2786,7 @@ w2utils.event = {

function getColorHTML(options) {
var color = options.color;
var html = '<div class="w2ui-color" onmousedown="event.stopPropagation()">'+
var html = '<div class="w2ui-color" onmousedown="event.stopPropagation(); event.preventDefault()">'+ // prevent default is needed otherwiser selection gets unselected
'<table cellspacing="5"><tbody>';
for (var i = 0; i < pal.length - 1; i++) {
html += '<tr>';
Expand Down
2 changes: 1 addition & 1 deletion dist/w2ui.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/w2ui.min.js

Large diffs are not rendered by default.

0 comments on commit 1e6078d

Please sign in to comment.