feature-matrix
Advanced tools
Comparing version 0.3.1 to 0.3.2
{ | ||
"name": "feature-matrix", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "A library for displaying a product's browser version requirements based on the underlying features", | ||
@@ -5,0 +5,0 @@ "author": "Concept Safety Systems", |
@@ -82,3 +82,6 @@ import $ from 'jquery'; | ||
if (col.version == '' + this.version) { | ||
// we always go in lowest to highest version order, so we can safely do | ||
// a greater than or equal comparison to catch minor versions that | ||
// don't have identical strings | ||
if (this.version >= parseFloat(col.version)) { | ||
yourColumn = col; | ||
@@ -85,0 +88,0 @@ break; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1157334
1555