| Age | Commit message (Collapse) | Author | 
 | 
 | 
 | 
Closes #492
 | 
 | 
https://bugzilla.mozilla.org/show_bug.cgi?id=684208
 | 
 | 
 | 
 | 
 | 
 | 
This is jQuery incompatible hack.
But we were doing monkey patching there anyway...
`$(...).trigger('click')` returns an array of return values, so that scenario
runner knows, whether the event default action was cancelled.
Without this fix, scenario runner was doing navigation even if JS code called
`event.preventDefault()`.
Note, this does not work in FF6
 | 
 | 
 | 
 | 
https://developer.mozilla.org/en/DOM/element.dispatchEvent
dispatchEvent method returns false if at least one of the event handlers called
preventDefault(), true otherwise.
It's helpful when browserTrigger method returns this value, as we can assert,
whether the default operation was cancelled or not.
 | 
 | 
 | 
 | 
* update $route to reflect new $location
* add some more unit tests to $route
* fix some other failing unit tests
* redirect overrides the url now
Breaks $route custom redirect fn has only 3 params now
 | 
 | 
See documentation of $location for more info
Breaks $location has no properties, only get/set methods
Closes #168
Closes #146
Closes #281
Closes #234
 | 
 | 
Chrome's Event has defaultPrevented property, but other browsers haven't.
This is workaround for other browsers - same as jQuery.
 | 
 | 
This method abstracts <base href="" /> in document.head - returns the value.
If absolute href set, it converts the href to relative.
 | 
 | 
This only extracts our 'hashchange' event and html5 history api detection from
$browser.
Closes #400
 | 
 | 
 | 
 | 
This is just basic implementation of $browser.url, $browser.onUrlChange methods:
$browser.url() - returns current location.href
$browser.url('/new') - set url to /new
If supported, history.pushState is used, location.href property otherwise.
$browser.url('/new', true) - replace current url with /new
If supported, history.replaceState is used, location.replace otherwise.
$browser.onUrlChange is only fired when url is changed from the browser:
- user types into address bar
- user clicks on back/forward button
- user clicks on link
It's not fired when url is changed using $browser.url()
Breaks Removed $browser.setUrl(), $browser.getUrl(), use $browser.url()
Breaks Removed $browser.onHashChange(), use $browser.onUrlChange()
 | 
 | 
 | 
 | 
 | 
 | 
Closes #547
 | 
 | 
IE's window.eval doesn't execute in the global context, so we have to
use window.execScript instead which works like window.eval on normal
browsers. However execScript throws an exception when an empty string is
passed in, so I created a workaround with a workaround.
 | 
 | 
This should have been part of 42062dab34192d2cb9ed66a720c0f791408c61c0
 | 
 | 
 | 
 | 
- buzz api keeps on throttling our requests which makes our build fail
  so I'm disabling the buzz demo e2e test
- the $xhr service jsonp test was modified to use jsonp on angularjs.org
  instead of buzz api for the same reason as mentioned above
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
ng:class as well as ng:class-odd and ng:class-even always reset the
class list to whatever it was before compilation, this makes it
impossible to create another directive which adds its own classes on the
element on which ng:class was applied.
the fix simply removes all classes that were added previously by
ng:class and add classes that the ng:class expression evaluates to.
we can now guarantee that we won't clobber stuff added before or after
compilation as long as all class names are unique.
in order to implement this I had to beef up jqLite#addClass and
jqLite#removeClass to be able to add/remove multiple classes without
creating duplicates.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
- both $watch and $on now return a function which when called
  deregisters the listener
- $removeListener was removed and replaced with the above
- added more tests for $watch and $on
Closes #542
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
- fixed traversal originating on a scope with with a right sibling
- unified code for both $broadcast and $digest
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
BREAKING CHANGE
* removing `onChange`
FEATURE
* adding three events: $beforeRouteChange, $afterRouteChange, $routeReload
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
- fetch plural rules from closure
- distribtue pluralization rules into each locale specific files
 | 
 | 
 | 
 | 
 | 
 | 
the max size for safari cookies has changed sligtly so I had to adjust
the test to make cookie creation fail on this browser
 |