ember-responsive
Advanced tools
Comparing version 0.2.13 to 0.2.14
{ | ||
"name": "ember-responsive", | ||
"version": "0.2.13", | ||
"version": "0.2.14", | ||
"main": "dist/ember-responsive.js", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -5,3 +5,3 @@ { | ||
"description": "Easy responsive layouts with Ember", | ||
"version": "0.2.11", | ||
"version": "0.2.13", | ||
"url": "https://freshbooks.github.io/ember-responsive/" | ||
@@ -165,4 +165,4 @@ }, | ||
"name": "matches", | ||
"type": "Ember.Set", | ||
"default": "Ember.Set", | ||
"type": "Ember.NativeArray", | ||
"default": "Ember.NativeArray", | ||
"class": "Ember.Responsive.Media", | ||
@@ -169,0 +169,0 @@ "module": "ember-responsive", |
@@ -262,7 +262,7 @@ (function(Ember) { | ||
* @property matches | ||
* @type Ember.Set | ||
* @default Ember.Set | ||
* @type Ember.NativeArray | ||
* @default Ember.NativeArray | ||
*/ | ||
matches: function() { | ||
return new Ember.Set(); | ||
return Ember.A(); | ||
}.property(), | ||
@@ -334,5 +334,5 @@ | ||
if (matcher.matches) { | ||
_this.get('matches').add(name); | ||
_this.get('matches').addObject(name); | ||
} else { | ||
_this.get('matches').remove(name); | ||
_this.get('matches').removeObject(name); | ||
} | ||
@@ -339,0 +339,0 @@ } |
{ | ||
"name": "ember-responsive", | ||
"version": "0.2.13", | ||
"version": "0.2.14", | ||
"description": "Easy responsive layouts with Ember", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
206802