Skip to content

Commit

Permalink
Corrected typo in variable name; fixes #9. Removed unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stowball committed Oct 2, 2015
1 parent eb7ca59 commit dbdc0bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 24 deletions.
14 changes: 2 additions & 12 deletions layout.engine.js
@@ -1,18 +1,8 @@
/*!
* Layout Engine v0.10.0
*
* Adds the rendering engine and browser names as a class on the html tag and returns a JavaScript object containing the vendor, version and browser name (where appropriate)
*
* Possible vendors: '.vendor-' + 'edge', 'ie', 'khtml', 'mozilla', 'opera', 'webkit'
* '.vendor-ie' also adds the version: 'vendor-' + 'ie-11', 'ie-10', 'ie-9', 'ie-8', 'ie-7'
* '.vendor-opera-mini' is also detected
*
* Possible browsers: '.browser-' + 'android', 'chrome', 'safari', 'safari-ios', 'wiiu'
* Layout Engine v0.10.1
*
* Copyright (c) 2015 Matt Stow
*
* http://mattstow.com
*
* Licensed under the MIT license
*/
;var layoutEngine = (function() {
Expand Down Expand Up @@ -57,7 +47,7 @@
}
else if ('fill' in style) {
cssClass += '-9';
jjsObject.version = 9;
jsObject.version = 9;
}
else if ('widows' in style) {
cssClass += '-8';
Expand Down
14 changes: 2 additions & 12 deletions layout.engine.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dbdc0bf

Please sign in to comment.