Merge "Remove browser arrays"

This commit is contained in:
jenkins-bot 2018-11-15 22:36:32 +00:00 committed by Gerrit Code Review
commit 40919abfaf
2 changed files with 0 additions and 32 deletions

View file

@ -930,16 +930,6 @@
} }
}, },
'search-and-replace': { 'search-and-replace': {
browsers: {
// Left-to-right languages
ltr: {
msie: [ [ '>=', 11 ] ] // Known to work on 11.
},
// Right-to-left languages
rtl: {
msie: [ [ '>=', 11 ] ] // Works on 11 but dialog positioning is cruddy.
}
},
titleMsg: 'wikieditor-toolbar-tool-replace-title', titleMsg: 'wikieditor-toolbar-tool-replace-title',
id: 'wikieditor-toolbar-replace-dialog', id: 'wikieditor-toolbar-replace-dialog',
htmlTemplate: 'dialogReplace.html', htmlTemplate: 'dialogReplace.html',

View file

@ -5,28 +5,6 @@
$.wikiEditor.modules.dialogs = { $.wikiEditor.modules.dialogs = {
/**
* Compatibility map
*/
browsers: {
// Left-to-right languages
ltr: {
msie: [ [ '>=', 9 ] ],
firefox: [ [ '>=', 4 ] ],
opera: [ [ '>=', '10.5' ] ],
safari: [ [ '>=', 5 ] ],
chrome: [ [ '>=', 5 ] ]
},
// Right-to-left languages
rtl: {
msie: [ [ '>=', 9 ] ],
firefox: [ [ '>=', 4 ] ],
opera: [ [ '>=', '10.5' ] ],
safari: [ [ '>=', 5 ] ],
chrome: [ [ '>=', 5 ] ]
}
},
/** /**
* API accessible functions * API accessible functions
*/ */