Skip to content

Commit 1755420

Browse files
committed
merge
2 parents 20d9242 + c3a82b3 commit 1755420

File tree

4 files changed

+57
-18
lines changed

4 files changed

+57
-18
lines changed

app/build/mojs-curve-editor.js

Lines changed: 43 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ return /******/ (function(modules) { // webpackBootstrap
7575
/******/ }
7676
/******/
7777
/******/ var hotApplyOnUpdate = true;
78+
<<<<<<< HEAD
7879
/******/ var hotCurrentHash = "86cbade4ccbde34b0320"; // eslint-disable-line no-unused-vars
80+
=======
81+
/******/ var hotCurrentHash = "ea5949bcab813286b280"; // eslint-disable-line no-unused-vars
82+
>>>>>>> c3a82b3d215ceb8b28d8b983cebac62f406ef58c
7983
/******/ var hotCurrentModuleData = {};
8084
/******/ var hotCurrentParents = []; // eslint-disable-line no-unused-vars
8185
/******/
@@ -4225,7 +4229,6 @@ return /******/ (function(modules) { // webpackBootstrap
42254229
/***/ function(module, exports) {
42264230

42274231
// shim for using process in browser
4228-
42294232
var process = module.exports = {};
42304233

42314234
// cached from whatever global is present so that test runners that stub it
@@ -4237,21 +4240,35 @@ return /******/ (function(modules) { // webpackBootstrap
42374240
var cachedClearTimeout;
42384241

42394242
(function () {
4240-
try {
4241-
cachedSetTimeout = setTimeout;
4242-
} catch (e) {
4243-
cachedSetTimeout = function () {
4244-
throw new Error('setTimeout is not defined');
4243+
try {
4244+
cachedSetTimeout = setTimeout;
4245+
} catch (e) {
4246+
cachedSetTimeout = function () {
4247+
throw new Error('setTimeout is not defined');
4248+
}
42454249
}
4246-
}
4247-
try {
4248-
cachedClearTimeout = clearTimeout;
4249-
} catch (e) {
4250-
cachedClearTimeout = function () {
4251-
throw new Error('clearTimeout is not defined');
4250+
try {
4251+
cachedClearTimeout = clearTimeout;
4252+
} catch (e) {
4253+
cachedClearTimeout = function () {
4254+
throw new Error('clearTimeout is not defined');
4255+
}
42524256
}
4253-
}
42544257
} ())
4258+
function runTimeout(fun) {
4259+
if (cachedSetTimeout === setTimeout) {
4260+
return setTimeout(fun, 0);
4261+
} else {
4262+
return cachedSetTimeout.call(null, fun, 0);
4263+
}
4264+
}
4265+
function runClearTimeout(marker) {
4266+
if (cachedClearTimeout === clearTimeout) {
4267+
clearTimeout(marker);
4268+
} else {
4269+
cachedClearTimeout.call(null, marker);
4270+
}
4271+
}
42554272
var queue = [];
42564273
var draining = false;
42574274
var currentQueue;
@@ -4276,7 +4293,7 @@ return /******/ (function(modules) { // webpackBootstrap
42764293
if (draining) {
42774294
return;
42784295
}
4279-
var timeout = cachedSetTimeout.call(null, cleanUpNextTick);
4296+
var timeout = runTimeout(cleanUpNextTick);
42804297
draining = true;
42814298

42824299
var len = queue.length;
@@ -4293,7 +4310,7 @@ return /******/ (function(modules) { // webpackBootstrap
42934310
}
42944311
currentQueue = null;
42954312
draining = false;
4296-
cachedClearTimeout.call(null, timeout);
4313+
runClearTimeout(timeout);
42974314
}
42984315

42994316
process.nextTick = function (fun) {
@@ -4305,7 +4322,7 @@ return /******/ (function(modules) { // webpackBootstrap
43054322
}
43064323
queue.push(new Item(fun, args));
43074324
if (queue.length === 1 && !draining) {
4308-
cachedSetTimeout.call(null, drainQueue, 0);
4325+
runTimeout(drainQueue);
43094326
}
43104327
};
43114328

@@ -9984,9 +10001,15 @@ return /******/ (function(modules) { // webpackBootstrap
998410001
/***/ function(module, exports) {
998510002

998610003
module.exports = {
10004+
<<<<<<< HEAD
998710005
"code-panel": "_code-panel_r7h38_3",
998810006
"code-panel__input-wrap": "_code-panel__input-wrap_r7h38_1",
998910007
"code-panel__input-field": "_code-panel__input-field_r7h38_1"
10008+
=======
10009+
"code-panel": "_code-panel_q9mrm_3",
10010+
"code-panel__input-wrap": "_code-panel__input-wrap_q9mrm_1",
10011+
"code-panel__input-field": "_code-panel__input-field_q9mrm_1"
10012+
>>>>>>> c3a82b3d215ceb8b28d8b983cebac62f406ef58c
999010013
};
999110014

999210015
/***/ },
@@ -10024,7 +10047,11 @@ return /******/ (function(modules) { // webpackBootstrap
1002410047

1002510048

1002610049
// module
10050+
<<<<<<< HEAD
1002710051
exports.push([module.id, "._code-panel_r7h38_3{position:absolute;left:10px;right:10px;margin-top:-32px;border-radius:6px 6px 0 0;background:#3d1b3c;z-index:1}._code-panel__input-wrap_r7h38_1{margin:4px 5px 5px;border-radius:2px;background:#42103f;border:1px solid #9c829a;box-shadow:inset 2px 2px 0 rgba(0,0,0,.5)}._code-panel__input-field_r7h38_1{display:block;background:transparent;color:#fff;font-size:9px;letter-spacing:.45px;line-height:21px;font-weight:100;padding:0 .3em 0 .8em;border:none;width:100%;height:21px}._code-panel_r7h38_3 ::-moz-selection,.code-panel ::-moz-selection{background:#ff512f}._code-panel_r7h38_3 ::selection{background:#ff512f}", ""]);
10052+
=======
10053+
exports.push([module.id, "._code-panel_q9mrm_3{position:absolute;left:10px;right:10px;margin-top:-32px;border-radius:6px 6px 0 0;background:#3d1b3c;z-index:1}._code-panel__input-wrap_q9mrm_1{margin:5px 5px 4px;border-radius:2px;background:#3a083a;border:1px solid #b3a0b2;box-shadow:inset 3px 3px 0 rgba(0,0,0,.5)}._code-panel__input-field_q9mrm_1{display:block;background:transparent;color:#fff;font-size:9px;font-family:Arial,Helvetica,sans-serif;letter-spacing:.45px;line-height:21px;font-weight:100;padding:0 .3em 0 .8em;border:none;width:100%}._code-panel_q9mrm_3 ::-moz-selection,.code-panel ::-moz-selection{background:#ff512f}._code-panel_q9mrm_3 ::selection{background:#ff512f}", ""]);
10054+
>>>>>>> c3a82b3d215ceb8b28d8b983cebac62f406ef58c
1002810055

1002910056
// exports
1003010057

app/build/mojs-curve-editor.min.js

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

app/css/blocks/code-panel.postcss.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
background: transparent;
2323
color: $c-white;
2424
font-size: 9px;
25+
font-family: Arial, Helvetica, sans-serif;
2526
letter-spacing: 0.45px;
2627
line-height: 21px;
2728
font-weight: 100;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"code-panel":"_code-panel_r7h38_3","code-panel__input-wrap":"_code-panel__input-wrap_r7h38_1","code-panel__input-field":"_code-panel__input-field_r7h38_1"}
1+
{"code-panel":"_code-panel_1tvha_3","code-panel__input-wrap":"_code-panel__input-wrap_1tvha_1","code-panel__input-field":"_code-panel__input-field_1tvha_1"}

0 commit comments

Comments
 (0)