Skip to content

Commit 15c5937

Browse files
committed
Update documentation for IE8 support l-lin#82
1 parent 1a5df7c commit 15c5937

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ $scope.$on('event:dataTableLoaded', function(event, loadedDT) {
8989
});
9090
```
9191

92+
* `Angular Datatables` is using [Object.create()](https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/Object/create) to instanciate options and columns.
93+
* If you need to support IE8, then you need to add this [Polyfill](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create#Polyfill).
94+
9295
License
9396
================
9497
[MIT License](http://en.wikipedia.org/wiki/MIT_License)

demo/partials/getting_started.html

+8
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,14 @@ <h3>Additional Notes</h3>
8383
});
8484
</div>
8585
</li>
86+
<li>
87+
<p>
88+
<code>Angular Datatables</code> is using <a href="https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/Object/create"><code>Object.create()</code></a> to instanciate options and columns.
89+
</p>
90+
<p>
91+
If you need to support IE8, then you need to add this <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create#Polyfill"><code>Polyfill</code></a>.
92+
</p>
93+
</li>
8694
</ul>
8795

8896
</section>

0 commit comments

Comments
 (0)