Fix script options which were inadvertently broken in the query tool tab naming patch.

This commit is contained in:
Surinder Kumar
2017-06-15 12:19:47 +01:00
committed by Dave Page
parent d70c3003d3
commit 2a87585665
4 changed files with 26 additions and 9 deletions

View File

@@ -52,6 +52,9 @@ define(['jquery'],
$('#pg_text').remove(); // remove element
return width;
},
capitalizeFirstLetter: function (string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
};
return sqlEditorUtils;