diff options
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/fomantic/build/semantic.css | 4 | ||||
-rw-r--r-- | web_src/fomantic/build/semantic.js | 12 | ||||
-rw-r--r-- | web_src/js/index.js | 4 | ||||
-rw-r--r-- | web_src/less/_base.less | 4 | ||||
-rw-r--r-- | web_src/less/helpers.less | 2 |
5 files changed, 13 insertions, 13 deletions
diff --git a/web_src/fomantic/build/semantic.css b/web_src/fomantic/build/semantic.css index 27ff073a56..ee136e13ff 100644 --- a/web_src/fomantic/build/semantic.css +++ b/web_src/fomantic/build/semantic.css @@ -30873,7 +30873,7 @@ ol.ui.suffixed.list li:before, List ---------------*/ -/* Menu divider shouldnt apply */ +/* Menu divider shouldn't apply */ .ui.menu .list .item:before { background: none !important; @@ -31802,7 +31802,7 @@ Floated Menu / Item opacity: 1; } -/* Icon Gylph */ +/* Icon Glyph */ .ui.icon.menu i.icon:before { opacity: 1; diff --git a/web_src/fomantic/build/semantic.js b/web_src/fomantic/build/semantic.js index c1c80fcd27..c68d266b0c 100644 --- a/web_src/fomantic/build/semantic.js +++ b/web_src/fomantic/build/semantic.js @@ -142,7 +142,7 @@ $.api = $.fn.api = function(parameters) { response = JSON.parse(response); } catch(e) { - // isnt json string + // isn't json string } } return response; @@ -2220,7 +2220,7 @@ $.fn.dimmer = function(parameters) { event: { click: function(event) { - module.verbose('Determining if event occured on dimmer', event); + module.verbose('Determining if event occurred on dimmer', event); if( $dimmer.find(event.target).length === 0 || $(event.target).is(selector.content) ) { module.hide(); event.stopImmediatePropagation(); @@ -3368,7 +3368,7 @@ $.fn.dropdown = function(parameters) { if(settings.onHide.call(element) !== false) { module.animate.hide(function() { module.remove.visible(); - // hidding search focus + // hiding search focus if ( module.is.focusedOnSearch() && preventBlur !== true ) { $search.blur(); } @@ -11937,7 +11937,7 @@ $.fn.progress = function(parameters) { * * @param min A minimum value within multiple values * @param total A total amount of multiple values - * @returns {number} A precison. Could be 1, 10, 100, ... 1e+10. + * @returns {number} A precision. Could be 1, 10, 100, ... 1e+10. */ derivePrecision: function(min, total) { var precisionPower = 0 @@ -12837,7 +12837,7 @@ $.fn.progress.settings = { nonNumeric : 'Progress value is non numeric', tooHigh : 'Value specified is above 100%', tooLow : 'Value specified is below 0%', - sumExceedsTotal : 'Sum of multple values exceed total', + sumExceedsTotal : 'Sum of multiple values exceed total', }, regExp: { @@ -18076,7 +18076,7 @@ $.fn.transition.settings = { // possible errors error: { - noAnimation : 'Element is no longer attached to DOM. Unable to animate. Use silent setting to surpress this warning in production.', + noAnimation : 'Element is no longer attached to DOM. Unable to animate. Use silent setting to suppress this warning in production.', repeated : 'That animation is already occurring, cancelling repeated animation', method : 'The method you called is not defined', support : 'This browser does not support CSS animations' diff --git a/web_src/js/index.js b/web_src/js/index.js index fc46a2e694..7a76b89f9b 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -34,7 +34,7 @@ const commentMDEditors = {}; // Silence fomantic's error logging when tabs are used without a target content element $.fn.tab.settings.silent = true; -// Silence Vue's console advertisments in dev mode +// Silence Vue's console advertisements in dev mode // To use the Vue browser extension, enable the devtools option temporarily Vue.config.productionTip = false; Vue.config.devtools = false; @@ -461,7 +461,7 @@ function initCommentForm() { } // TODO: Which thing should be done for choosing review requests - // to make choosed items be shown on time here? + // to make chosen items be shown on time here? if (selector === 'select-reviewers-modify' || selector === 'select-assignees-modify') { return false; } diff --git a/web_src/less/_base.less b/web_src/less/_base.less index f9ac397e4e..dac18f2bf6 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -134,7 +134,7 @@ pre, code, kbd, samp { - font-size: .9em; /* compensate for monospace fonts being usually slighty larger */ + font-size: .9em; /* compensate for monospace fonts being usually slightly larger */ font-family: var(--fonts-monospace); } @@ -748,7 +748,7 @@ a.ui.card:hover, box-shadow: none; } - /* Overide semantic selector '.ui.menu:not(.vertical) .item > .button' */ + /* Override semantic selector '.ui.menu:not(.vertical) .item > .button' */ /* This fixes the commit graph button on the commits page */ .menu:not(.vertical) .item > .button.compact { diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less index 3f58184f06..5e067a1a32 100644 --- a/web_src/less/helpers.less +++ b/web_src/less/helpers.less @@ -17,7 +17,7 @@ .mono { font-family: var(--fonts-monospace) !important; - font-size: .9em !important; /* compensate for monospace fonts being usually slighty larger */ + font-size: .9em !important; /* compensate for monospace fonts being usually slightly larger */ } .bold { font-weight: 600 !important; } |