Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 18:59:58 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:12:29 +0300
commitd7d3233715503ecc15b8dd1973f7e73257e2cbda (patch)
treef9f9ab24b89fe574b3f972e45c8337bcd791a9b1 /netrender/js
parent84b817117328b3193533324846ec389b1f5fe5c4 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3746
Diffstat (limited to 'netrender/js')
-rw-r--r--netrender/js/jquery.js10
-rw-r--r--netrender/js/netrender-widget.js2
2 files changed, 6 insertions, 6 deletions
diff --git a/netrender/js/jquery.js b/netrender/js/jquery.js
index 8ccd0ea7..57692314 100644
--- a/netrender/js/jquery.js
+++ b/netrender/js/jquery.js
@@ -2278,7 +2278,7 @@ jQuery.fn.extend({
classNames = value.split( rspace );
while ( (className = classNames[ i++ ]) ) {
- // check each className given, space seperated list
+ // check each className given, space separated list
state = isBool ? state : !self.hasClass( className );
self[ state ? "addClass" : "removeClass" ]( className );
}
@@ -3868,7 +3868,7 @@ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[
rNonWord = /\W/;
// Here we check if the JavaScript engine is using some sort of
-// optimization where it does not always call our comparision
+// optimization where it does not always call our comparison
// function. If that is the case, discard the hasDuplicate value.
// Thus far that includes Google Chrome.
[0, 0].sort(function() {
@@ -4180,7 +4180,7 @@ Sizzle.error = function( msg ) {
};
/**
- * Utility function for retreiving the text value of an array of DOM nodes
+ * Utility function for retrieving the text value of an array of DOM nodes
* @param {Array|Element} elem
*/
var getText = Sizzle.getText = function( elem ) {
@@ -7770,7 +7770,7 @@ function ajaxConvert( s, response ) {
for ( i = 1; i < length; i++ ) {
// Create converters map
- // with lowercased keys
+ // with lowercase keys
if ( i === 1 ) {
for ( key in s.converters ) {
if ( typeof key === "string" ) {
@@ -8111,7 +8111,7 @@ if ( jQuery.support.ajax ) {
xml;
// Firefox throws exceptions when accessing properties
- // of an xhr when a network error occured
+ // of an xhr when a network error occurred
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
try {
diff --git a/netrender/js/netrender-widget.js b/netrender/js/netrender-widget.js
index b69aadfe..66995389 100644
--- a/netrender/js/netrender-widget.js
+++ b/netrender/js/netrender-widget.js
@@ -105,7 +105,7 @@ function createPanelwidget(parent, name, header, content) {
/*
* create a jquery tabed widget
* param;
- * parent (string): parent elemenet selector in form of '#name'
+ * parent (string): parent element selector in form of '#name'
* name (string ): name of the widget
* tabs_descriptions: array of object { name:"tabs-1", f_content: function for display tab content}
* f_content= function(name){} where name is the tab name