Skip to content

Commit

Permalink
Remove fix-proto - Drop support for IE < 10 (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwondercorn authored Jul 10, 2022
1 parent bc4e6bf commit 5e81bca
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 120 deletions.
4 changes: 0 additions & 4 deletions addon/classes/Column.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { A as emberArray, makeArray } from '@ember/array';
import EmberObject, { computed } from '@ember/object';
import { isEmpty } from '@ember/utils';
import { guidFor } from '@ember/object/internals';
import fixProto from 'ember-light-table/utils/fix-proto';

/**
* @module Table
Expand Down Expand Up @@ -324,6 +323,3 @@ export default class Column extends EmberObject.extend({
this.set('subColumns', subColumns);
}
}) {}

// https://github.com/offirgolan/ember-light-table/issues/436#issuecomment-310138868
fixProto(Column);
4 changes: 0 additions & 4 deletions addon/classes/Row.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import ObjectProxy from '@ember/object/proxy';
import { computed } from '@ember/object';
import { guidFor } from '@ember/object/internals';
import fixProto from 'ember-light-table/utils/fix-proto';

/**
* @module Table
Expand Down Expand Up @@ -78,6 +77,3 @@ export default class Row extends ObjectProxy.extend({
return guidFor(this);
}).readOnly()
}) {}

// https://github.com/offirgolan/ember-light-table/issues/436#issuecomment-310138868
fixProto(Row);
4 changes: 0 additions & 4 deletions addon/classes/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Row from 'ember-light-table/classes/Row';
import Column from 'ember-light-table/classes/Column';
import SyncArrayProxy from 'ember-light-table/-private/sync-array-proxy';
import { mergeOptionsWithGlobals } from 'ember-light-table/-private/global-options';
import fixProto from 'ember-light-table/utils/fix-proto';
import { assign } from '@ember/polyfills';
import { isNone } from '@ember/utils';

Expand Down Expand Up @@ -455,6 +454,3 @@ export default class Table extends EmberObject.extend({
return columns.map((c) => Table.createColumn(c));
}
}

// https://github.com/offirgolan/ember-light-table/issues/436#issuecomment-310138868
fixProto(Table);
77 changes: 0 additions & 77 deletions addon/utils/fix-proto.js

This file was deleted.

31 changes: 0 additions & 31 deletions tests/unit/utils/fix-proto-test.js

This file was deleted.

0 comments on commit 5e81bca

Please sign in to comment.