Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NIFI-7577 Upgrade angular version. #4357

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -17,7 +17,7 @@
"description": "Apache NiFi 3rd party client side resources.",
"dependencies": {
"JSON2": "0.1.0",
"angular": "1.7.9",
"angular": "1.8.0",
"angular-aria": "1.7.9",
"angular-animate": "1.7.9",
"angular-messages": "1.7.9",
Expand Down
Expand Up @@ -293,11 +293,11 @@
});

// create the button panel
var stringCheckPanel = $('<div class="string-check-container">');
var stringCheckPanel = $('<div class="string-check-container" />');
stringCheckPanel.appendTo(wrapper);

// build the custom checkbox
isEmpty = $('<div class="nf-checkbox string-check"/>')
isEmpty = $('<div class="nf-checkbox string-check" />')
.on('change', function (event, args) {
// if we are setting as an empty string, disable the editor
if (args.isChecked) {
Expand Down Expand Up @@ -953,7 +953,7 @@
});

// create the input field
$('<textarea hidefocus rows="5" readonly="readonly"/>').css({
$('<textarea hidefocus rows="5" readonly="readonly" />').css({
'height': '80px',
'resize': 'both',
'width': cellNode.width() + 'px',
Expand Down Expand Up @@ -1337,7 +1337,7 @@
content.find('.ellipsis').width(columnDef.width - 10).ellipsis();

// return the appropriate markup
return $('<div/>').append(content).html();
return $('<div />').append(content).html();
};

var propertyColumns = [
Expand Down
Expand Up @@ -52,7 +52,7 @@
var tabPane = $(this);

// create the unorder list
var tabList = $('<ul/>').addClass('tab-pane');
var tabList = $('<ul />').addClass('tab-pane');
var shownTab = false;

// create each tab
Expand Down
Expand Up @@ -331,7 +331,7 @@
editRemotePort.show();
}
} else if (port.exists === false) {
$('<div class="remote-port-removed"/>').appendTo(portContainerEditContainer).qtip($.extend({},
$('<div class="remote-port-removed" />').appendTo(portContainerEditContainer).qtip($.extend({},
nfCommon.config.tooltipConfig,
{
content: 'This port has been removed.'
Expand Down
Expand Up @@ -123,11 +123,11 @@
});

// create the button panel
var stringCheckPanel = $('<div class="string-check-container">');
var stringCheckPanel = $('<div class="string-check-container" />');
stringCheckPanel.appendTo(wrapper);

// build the custom checkbox
isEmpty = $('<div class="nf-checkbox string-check"/>')
isEmpty = $('<div class="nf-checkbox string-check" />')
.on('change', function (event, args) {
// if we are setting as an empty string, disable the editor
if (args.isChecked) {
Expand Down
Expand Up @@ -200,7 +200,7 @@
$('#shell-dialog').modal('show');

// create the content container
var contentContainer = $('<div>').addClass('shell-content-container').css({
var contentContainer = $('<div />').addClass('shell-content-container').css({
width: shell.width(),
height: shell.height()
}).append(content).appendTo(shell);
Expand Down