Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
fix(Dropdown): Dropdown appearing behind another picky
Browse files Browse the repository at this point in the history
fix #21
  • Loading branch information
Aidurber committed Dec 30, 2017
1 parent 91cd7f3 commit 1ad43de
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ function createCommonjsModule(fn, module) {
return module = { exports: {} }, fn(module, module.exports), module.exports;
}

/**
* lodash (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright jQuery Foundation and other contributors <https://jquery.org/>
* Released under MIT license <https://lodash.com/license>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
*/

/** Used as the `TypeError` message for "Functions" methods. */
var FUNC_ERROR_TEXT = 'Expected a function';

/** Used as references for various `Number` constants. */
Expand Down Expand Up @@ -386,6 +396,22 @@ function toNumber(value) {

var lodash_debounce = debounce;

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/* global Reflect, Promise */

var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
Expand Down Expand Up @@ -2720,6 +2746,9 @@ function stubFalse() {
module.exports = isEqual;
});

// Unique ID creation requires a high quality random # generator. In node.js
// this is pretty straight-forward - we use the crypto API.

var rb = crypto.randomBytes;

function rng() {
Expand Down
1 change: 1 addition & 0 deletions dist/picky.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
position: absolute;
top: 0;
left: 0;
z-index: 99;
background: white;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
Expand Down
1 change: 1 addition & 0 deletions src/Picky.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ $selected: #ecf0f1;
position: absolute;
top: 0;
left: 0;
z-index: 99;
background: white;
border-left: 1px solid $border;
border-right: 1px solid $border;
Expand Down

0 comments on commit 1ad43de

Please sign in to comment.