Browse Source

expose more things

Adam Shaw 8 years ago
parent
commit
2ec0ad8296
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/models/ComponentFootprint.js
  2. 1 1
      src/models/UnzonedRange.js

+ 1 - 1
src/models/ComponentFootprint.js

@@ -2,7 +2,7 @@
 /*
 Meant to be immutable
 */
-var ComponentFootprint = Class.extend({
+var ComponentFootprint = FC.ComponentFootprint = Class.extend({
 
 	unzonedRange: null,
 	isAllDay: false, // component can choose to ignore this

+ 1 - 1
src/models/UnzonedRange.js

@@ -1,5 +1,5 @@
 
-var UnzonedRange = Class.extend({
+var UnzonedRange = FC.UnzonedRange = Class.extend({
 
 	startMs: null,
 	endMs: null,