kopia lustrzana https://github.com/c9/core
Merge pull request +9673 from c9/fix/various
Fix various small issuespull/199/head
commit
e5421dc510
|
@ -1402,7 +1402,7 @@ module.exports = function setup(fsOptions) {
|
||||||
tryConnect();
|
tryConnect();
|
||||||
function tryConnect() {
|
function tryConnect() {
|
||||||
var called = false;
|
var called = false;
|
||||||
var socket = net.connect(port, process.env.OPENSHIFT_DIY_IP || "localhost", function() {
|
var socket = net.connect(port, "127.0.0.1", function() {
|
||||||
if (called) return;
|
if (called) return;
|
||||||
called = true;
|
called = true;
|
||||||
|
|
||||||
|
|
|
@ -577,6 +577,7 @@ apf.vsplitbox = function(struct, tagName) {
|
||||||
if (isPercentage) {
|
if (isPercentage) {
|
||||||
fNode.$ext.style.height = "";
|
fNode.$ext.style.height = "";
|
||||||
fNode.$ext.style.bottom = (100 - parseFloat(fNode.height)) + "%";
|
fNode.$ext.style.bottom = (100 - parseFloat(fNode.height)) + "%";
|
||||||
|
lNode.$ext.style.height = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.$handle) {
|
if (this.$handle) {
|
||||||
|
|
Ładowanie…
Reference in New Issue