Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Breeze and Angular 'ToDo' app does not work with IE 8

I have downloaded the sample 'Breeze 0.83.5' applications from http://www.breezejs.com/documentation/download

The Angular 'ToDo' sample does not work with IE8.

I have included the following script references above my Breeze script reference.

Any idea why this doesn't work?

like image 254
Paul Avatar asked Jan 09 '13 15:01

Paul


2 Answers

Breeze's Angular support makes use of the 'backingStoreAdapter' which in turn depends on the ES5 Javascript 'defineProperty' method being implemented by the browser. This was not implemented in IE8, and unfortunately, cannot be supplemented via the use of a shim.

This is the only adapter that has this limitation, the breeze knockout and backbone adapters, both work with IE8 with the use of ES5 shims.

Sorry!

like image 150
Jay Traband Avatar answered Sep 18 '22 17:09

Jay Traband


It will not work on IE8 in the future versions of Breeze neither.

Todo-Angular runs in modern browsers such as IE9, IE10, and recent Chrome, Safari, Firefox, and WebKit browsers. Breeze does not support AngularJS apps running in older browsers that lack ECMAScript 5 property getters and setters.

like image 25
Umur Kontacı Avatar answered Sep 19 '22 17:09

Umur Kontacı