Skip to content
Snippets Groups Projects

Don't execute git hooks if you create branch as part of other change

Merged Kamil Trzciński requested to merge fix-git-hooks-when-creating-file into master
All threads resolved!
Compare and Show latest version
75 files
+ 973
183
Compare changes
  • Side-by-side
  • Inline
Files
75
@@ -650,6 +650,11 @@
@@ -650,6 +650,11 @@
} else if(value) {
} else if(value) {
field = this.dropdown.parent().find("input[name='" + fieldName + "'][value='" + value.toString().replace(/'/g, '\\\'') + "']");
field = this.dropdown.parent().find("input[name='" + fieldName + "'][value='" + value.toString().replace(/'/g, '\\\'') + "']");
}
}
 
 
if (this.options.isSelectable && !this.options.isSelectable(selectedObject, el)) {
 
return;
 
}
 
if (el.hasClass(ACTIVE_CLASS)) {
if (el.hasClass(ACTIVE_CLASS)) {
el.removeClass(ACTIVE_CLASS);
el.removeClass(ACTIVE_CLASS);
if (field && field.length) {
if (field && field.length) {
Loading