aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngScenario/Application.js
AgeCommit message (Collapse)Author
2013-11-08fix(ngScenario): correctly disable animations for end 2 end testsPete Bacon Darwin
2013-06-19feat(jqLite): switch bind/unbind to more recent jQuery on/offMichał Gołębiowski
jQuery switched to a completely new event binding implementation as of 1.7.0, centering around on/off methods instead of previous bind/unbind. This patch makes jqLite match this implementation while still supporting previous bind/unbind methods.
2013-05-08fix(scenario): update to use our angular-scenario.js rather then karmaMisko Hevery
2013-05-08feat($sniffer): Add support for supportsAnimations flag for detecting CSS ↵Matias Niemelä
Animations browser support
2013-04-13fix(Scenario): correct bootstrap issue on IEIgor Minar
we need to set the deferred bootstrap flag via window.name after the iframe's src has been set, otherwise IE will reset it to empty string
2013-04-03feat(Scenario): autodisable animations when running e2e testsIgor Minar
animations cause the dom to contain elements that have been removed from the model but are being animated out. we could teach the e2e runner to wait for animations but that would make all tests slower. it should be quite safe to just disable animations automatically when the app is running via the e2e test runner. this change disables only css animations. we should make additional change that disables js animations as well, but since we don't need this right now I'm punting on it.
2012-05-05fix(scenario): make browser().location() working if ng-app on other than <html>Vojta Jina
2012-04-12fix(e2eRunner): $browser.location should delegate to apps $locationIgor Minar
previously it would create a new instance which wasn't configured as the one in the app, which resulted in incorrect values being returned in html5 mode with base url set
2012-03-28chore(module): move files around in preparation for more modulesMisko Hevery