Browse Source

Merge pull request #2984 from maturano/typos

Typos
pull/3015/head
Jack Lukic 9 years ago
parent
commit
5d098407e2
7 changed files with 10 additions and 10 deletions
  1. 2
      examples/responsive.html
  2. 2
      src/definitions/behaviors/api.js
  3. 2
      src/definitions/collections/form.less
  4. 4
      src/definitions/globals/site.js
  5. 4
      src/definitions/modules/dropdown.js
  6. 2
      src/definitions/modules/search.js
  7. 4
      src/definitions/modules/tab.js

2
examples/responsive.html

@ -670,7 +670,7 @@ $(document).ready(function() {
// fire once each time passed
once: false,
// dont refresh position on resize
// don't refresh position on resize
checkOnRefresh: true,
// lock to this element on resize

2
src/definitions/behaviors/api.js

@ -1103,7 +1103,7 @@ $.api.settings = {
missingSerialize : 'jquery-serialize-object is required to add form data to an existing data object',
missingURL : 'No URL specified for api event',
noReturnedValue : 'The beforeSend callback must return a settings object, beforeSend ignored.',
noStorage : 'Caching respopnses locally requires session storage',
noStorage : 'Caching responses locally requires session storage',
parseError : 'There was an error parsing your request',
requiredParameter : 'Missing a required URL parameter: ',
statusMessage : 'Server gave an error: ',

2
src/definitions/collections/form.less

@ -423,7 +423,7 @@
}
/*--------------------
Warning
Error
---------------------*/
/* On Form */

4
src/definitions/globals/site.js

@ -81,7 +81,7 @@ $.site = $.fn.site = function(parameters) {
requestAnimationFrame: function() {
module.debug('Normalizing requestAnimationFrame');
if(window.requestAnimationFrame === undefined) {
module.debug('RequestAnimationFrame not available, normailizing event');
module.debug('RequestAnimationFrame not available, normalizing event');
window.requestAnimationFrame = window.requestAnimationFrame
|| window.mozRequestAnimationFrame
|| window.webkitRequestAnimationFrame
@ -484,4 +484,4 @@ $.extend($.expr[ ":" ], {
});
})( jQuery, window , document );
})( jQuery, window , document );

4
src/definitions/modules/dropdown.js

@ -821,7 +821,7 @@ $.fn.dropdown = function(parameters) {
module.hide();
}
},
// prevents focus callback from occuring on mousedown
// prevents focus callback from occurring on mousedown
mousedown: function() {
activated = true;
},
@ -3229,7 +3229,7 @@ $.fn.dropdown.settings = {
maxSelections : false, // When set to a number limits the number of selections to this count
useLabels : true, // whether multiple select should filter currently active selections from choices
delimiter : ',', // when multiselect uses normal <input> the values will be delmited with this character
delimiter : ',', // when multiselect uses normal <input> the values will be delimited with this character
showOnFocus : true, // show menu on focus
allowTab : true, // add tabindex to element

2
src/definitions/modules/search.js

@ -350,7 +350,7 @@ $.fn.search = function(parameters) {
$.each(results, function(index, category) {
if($.isArray(category.results)) {
result = module.search.object(value, category.results, lookupFields)[0];
// dont continue searching if a result is found
// don't continue searching if a result is found
if(result) {
return false;
}

4
src/definitions/modules/tab.js

@ -107,7 +107,7 @@ $.fn.tab = function(parameters) {
bind: {
events: function() {
// if using $.tab dont add events
// if using $.tab don't add events
if( !$.isWindow( element ) ) {
module.debug('Attaching tab activation events to element', $module);
$module
@ -895,4 +895,4 @@ $.fn.tab.settings = {
};
})( jQuery, window , document );
})( jQuery, window , document );
Loading…
Cancel
Save