Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular/angular.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rzschech/angular.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 21 files changed
  • 2 contributors

Commits on Jul 31, 2013

  1. Configuration menu
    Copy the full SHA
    2aef749 View commit details
    Browse the repository at this point in the history
  2. feat($urlUtils): make public, add resolve callback

    The resolve callback allows the application code to modify the
    resolved URL before it is normailzed by urlParsingNode.href for example:
    
    var parsed = $urlUtils.resolve("foo", function(urlUtils) {
      urlUtils.protocol =
        urlUtils.protocol === 'https:' ? 'wss:' : 'ws:';
    });
    parsed.href // wss://localhost/foo
    
    The resolved URL object now includes the aditional properties hostname,
    port, pathname, hash and search.
    
    Closes #3299
    rzschech committed Jul 31, 2013
    Configuration menu
    Copy the full SHA
    c875baa View commit details
    Browse the repository at this point in the history
  3. 1.1.6-ts

    rzschech committed Jul 31, 2013
    Configuration menu
    Copy the full SHA
    2387611 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2013

  1. Merge branch 'master' of https://github.com/angular/angular.js

    Conflicts:
    	src/ng/compile.js
    	src/ng/urlUtils.js
    rzschech committed Sep 5, 2013
    Configuration menu
    Copy the full SHA
    f43cbca View commit details
    Browse the repository at this point in the history
  2. feat($timeout): Add debouncing support to $timeout service

    This feature allows resetting the timer on an ongoing `$timeout` promise.
    
    A fourth optional argument is added to `$timeout` which is the
    old promise to be reset.
    
    I.e.: `promise = $timeout(fn, 2000, true, promise);`
    
    This will call `fn()` 2 seconds after the last call to the `$timeout()`
    function.
    lrlopez authored and rzschech committed Sep 5, 2013
    Configuration menu
    Copy the full SHA
    280edf4 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2013

  1. v1.2.0-rc.2-tsn

    rzschech committed Sep 6, 2013
    Configuration menu
    Copy the full SHA
    8e686f7 View commit details
    Browse the repository at this point in the history
Loading