ember-responsive
Advanced tools
Comparing version 0.2.12 to 0.2.13
{ | ||
"name": "ember-responsive", | ||
"version": "0.2.11", | ||
"version": "0.2.13", | ||
"main": "dist/ember-responsive.js", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -82,7 +82,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(), | ||
@@ -154,5 +154,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); | ||
} | ||
@@ -159,0 +159,0 @@ } |
{ | ||
"name": "ember-responsive", | ||
"version": "0.2.12", | ||
"version": "0.2.13", | ||
"description": "Easy responsive layouts with Ember", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
206726