This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/handsontable/core.mjs b/node_modules/handsontable/core.mjs | |
index db18cea..504e2af 100644 | |
--- a/node_modules/handsontable/core.mjs | |
+++ b/node_modules/handsontable/core.mjs | |
@@ -1168,14 +1168,14 @@ export default function Core(rootElement, userSettings) { | |
var shouldBeCanceled = true; | |
if (beforeChangeResult === false) { | |
if (activeEditor) { | |
- activeEditor.cancelChanges(); | |
+ //activeEditor.cancelChanges(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ar.edu.undav.ejemplo.config; | |
/** | |
* Juan Lagostena on 30/12/16 | |
* . | |
*/ | |
public class HerokuDatasourceParser { | |
public static final String SEPARATOR = ":"; | |
public static final String SLASH = "/"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!groovy | |
stage 'build and tests' | |
def project | |
def slack | |
node { | |
def workspace = pwd() | |
slack = load "${workspace}@script/slack.groovy" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
BRANCHES_TO_FILTER="master|development" | |
MERGED_BRANCHES=$(git branch --merged | egrep -v "(^\*|$BRANCHES_TO_FILTER)") | |
if [ "$MERGED_BRANCHES" == "" ]; then | |
echo "No hay branches sin mergear" | |
exit 0 | |
fi |