File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Backend/view/adminhtml/web/template/dynamic-rows
Theme/view/adminhtml/templates/tabs Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 37
37
< div class ="admin__control-table-pagination " visible ="!!element.getRecordCount() ">
38
38
< div class ="admin__data-grid-pager ">
39
39
< button class ="action-previous " type ="button " data-bind ="attr: {title: $t('Previous Page')}, click: previousPage, disable: isFirst() "> </ button >
40
- < input class ="admin__control-text " type ="number " data-bind ="attr: {id: ++ko.uid}, value: currentPage ">
40
+ < input class ="admin__control-text " type ="number " data-bind ="attr: {id: ++ko.uid}, value: currentPage "/ >
41
41
< label class ="admin__control-support-text " data-bind ="attr: {for: ko.uid}, text: 'of ' + pages() "> </ label >
42
42
< button class ="action-next " type ="button " data-bind ="attr: {title: $t('Next Page')}, click: nextPage, disable: isLast() "> </ button >
43
43
</ div >
86
86
< div class ="message message-notice notice ">
87
87
< span
88
88
translate ="'Search strings are either normal strings or regular expressions (PCRE). They are matched in the same order as entered.' "> </ span >
89
- < br >
89
+ < br / >
90
90
< span
91
91
translate ="'Examples' "> </ span > :
92
92
< span class ="code-sample "> Firefox: /^mozilla/i</ span >
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ require([
35
35
var uploadButton = $('#css_uploader_button');
36
36
/** Unbind click event on file change */
37
37
uploadButton.off('click');
38
- uploadButton.removeAttr ('disabled');
38
+ uploadButton.prop ('disabled', false );
39
39
40
- uploadButton.click( function () {
40
+ uploadButton.on('click', function () {
41
41
$('#messages').html('');
42
42
$(this).attr('disabled', 'disabled');
43
43
data.submit();
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ require([
57
57
});
58
58
59
59
var uploadButton = $('#js_uploader_button');
60
- uploadButton.removeAttr ('disabled');
60
+ uploadButton.prop ('disabled', false );
61
61
62
- uploadButton.click( function () {
62
+ uploadButton.on('click', function () {
63
63
$('#messages').html('');
64
64
$(this).attr('disabled', 'disabled');
65
65
@@ -121,7 +121,7 @@ require([
121
121
}
122
122
});
123
123
124
- $('#js_files_uploader').click( function () {
124
+ $('#js_files_uploader').on('click', function () {
125
125
/** Unbind click event on file change */
126
126
$('#js-file-uploader').html('');
127
127
$('#js_uploader_button').off('click');
You can’t perform that action at this time.
0 commit comments