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

LPS-40129 The second Continue button is unresponsive when importing LAR in IE10 #1678

Closed
wants to merge 1 commit 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
Expand Up @@ -558,15 +558,15 @@ ManifestSummary manifestSummary = ExportImportHelperUtil.getManifestSummary(user
</aui:script>

<aui:script use="aui-base">
A.one(<portlet:namespace />continue).on(
A.one('#<portlet:namespace />continue').on(
'click',
function() {
A.one('#<portlet:namespace />importConfiguration').hide()
A.one('#<portlet:namespace />importStrategy').show();
}
);

A.one(<portlet:namespace />back).on(
A.one('#<portlet:namespace />back').on(
'click',
function() {
A.one('#<portlet:namespace />importConfiguration').show()
Expand Down
Expand Up @@ -346,16 +346,15 @@ ManifestSummary manifestSummary = ExportImportHelperUtil.getManifestSummary(user
</aui:script>

<aui:script use="aui-base">
A.one(<portlet:namespace />continue).on(
A.one('#<portlet:namespace />continue').on(
'click',
function() {
A.one('#<portlet:namespace />importConfiguration').hide()
A.one('#<portlet:namespace />importStrategy').show();
}
);

A.one(<portlet:namespace />back).on(
'click',
A.one('#<portlet:namespace />back').on(
'click',
function() {
A.one('#<portlet:namespace />importConfiguration').show()
Expand Down