Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Commits on Jan 30, 2014
  1. Igor Minar
  2. Igor Minar
Commits on Jan 28, 2014
  1. Julie Ralph ⭐caitp⭐

    test(docs): convert example end to end doc tests from scenario runner…

    juliemr authored caitp committed
    … to protractor
    
    Thanks to jeffbcross, petebacondarwin, btford, jdeboer, tbosch for contributions!
    
    Closes #6023
Commits on Jan 10, 2014
  1. Julie Ralph Jeff Cross

    feat(build): add a grunt test for running protractor tests extracted …

    juliemr authored jeffbcross committed
    …from the docs
Commits on Dec 16, 2013
  1. Vojta Jina

    chore: run docs unit test only once

    vojtajina authored
    Before we would run them twice on Travis. I don't think it should be part of ci-check task.
Commits on Dec 13, 2013
  1. Tobias Bosch
Commits on Dec 2, 2013
  1. Pete Bacon Darwin

    chore(grunt): update to latest jshint task

    James Brewer authored petebacondarwin committed
    Upgrade JSHint task from ~0.6.4 to ~0.7.2. Two useful changes: ability
    to set jshintrc option to use jshint's native ability for finding .jshintrc
    files relative to the linted files and update jshint to 2.3.0.
    
    Closes #5143
Commits on Nov 26, 2013
  1. David Mosher Pete Bacon Darwin

    chore(mocks): wrap angular-mocks.js in closure

    davemo authored petebacondarwin committed
    Closes #5080
Commits on Nov 5, 2013
  1. Pete Bacon Darwin
Commits on Oct 24, 2013
  1. Pete Bacon Darwin

    chore(grunt): add jshint to the test task

    petebacondarwin authored
    It is very easy to let jshint failures slip into the master build if
    the jshint task is not part of the standard local grunt tasks.
Commits on Oct 22, 2013
  1. Vojta Jina
  2. Pete Bacon Darwin Vojta Jina

    chore(grunt): add jshint tasks

    petebacondarwin authored vojtajina committed
  3. Tobias Bosch Igor Minar

    fix: don't inline css in csp mode.

    tbosch authored IgorMinar committed
    Also add `angular-csp.css` to the resulting build.
Commits on Oct 11, 2013
  1. Pete Bacon Darwin
  2. Jorik Tangelder Pete Bacon Darwin
Commits on Sep 17, 2013
  1. Pete Bacon Darwin
Commits on Aug 29, 2013
  1. Vojta Jina

    chore(travis): run bower install twice to make sure it does

    vojtajina authored
    This is a work-around for Bower/Node.js issue (bower/bower#830). We run `bower install` twice, as the probability of failing twice in a row is very low.
    
    I had to extract `bower` task out of the package, because we need to run `bower install` before building and `grunt bower` can fail, which takes down the whole process and therefore it wouldn't build.
Commits on Aug 24, 2013
  1. James Talmage Igor Minar

    chore(tests): add Promises/A+ Test Suite to the build

    jamestalmage authored IgorMinar committed
    Closes #3693
Commits on Aug 23, 2013
  1. Vojta Jina

    chore: run more browsers on Travis (IE8,IE9,IE10,Safari,FF)

    vojtajina authored
    Also instead of running everything in parallel, there are only two parallel tasks:
    - e2e tests running in the background (only on Chrome)
    - all the unit tests running sequentially
Commits on Aug 14, 2013
  1. Vojta Jina
  2. Vojta Jina

    chore: fix Travis build

    vojtajina authored
    Specify hostname/port for connect server to avoid
    joyent/libuv#826
Commits on Aug 13, 2013
  1. Igor Minar
Commits on Aug 9, 2013
  1. Brian Ford Igor Minar

    chore(ngMobile): rename module ngTouch and file to angular-touch.js

    btford authored IgorMinar committed
    BREAKING CHANGE: since all the code in the ngMobile module is touch related,
    we are renaming the module to ngTouch.
    
    To migrate, please replace all references to "ngMobile" with "ngTouch" and
    "angular-mobile.js" to "angular-touch.js".
    
    Closes #3526
  2. Matias Niemelä Igor Minar

    chore(grunt): fix up the help text for the new test commands

    matsko authored IgorMinar committed
    Closes #3421
  3. Matias Niemelä Igor Minar
Commits on Jul 31, 2013
  1. Ken Sheedlo
Commits on Jul 30, 2013
  1. Ken Sheedlo

    fix(bower): update bower usage and resources

    ksheedlo authored
    Changes:
    - Fix our old code to use bower_components/ as the install dir
    - Fix the Bootstrap asset to use github.com/twbs/bootstrap (it moved)
    - Fail the build on Bower failure. Bower should not fail silently.
Commits on Jul 27, 2013
  1. Matias Niemelä Miško Hevery

    feat(ngAnimate): complete rewrite of animations

    matsko authored mhevery committed
    - ngAnimate directive is gone and was replaced with class based animations/transitions
    - support for triggering animations on css class additions and removals
    - done callback was added to all animation apis
    - $animation and $animator where merged into a single $animate service with api:
      - $animate.enter(element, parent, after, done);
      - $animate.leave(element, done);
      - $animate.move(element, parent, after, done);
      - $animate.addClass(element, className, done);
      - $animate.removeClass(element, className, done);
    
    BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
Commits on Jul 25, 2013
  1. Chirayu Krishnappa

    feat(ngBindHtml, sce): combine ng-bind-html and ng-bind-html-unsafe

    chirayuk authored
    Changes:
    - remove ng-bind-html-unsafe
    - ng-bind-html is now in core
    - ng-bind-html is secure
      - supports SCE - so you can bind to an arbitrary trusted string
      - automatic sanitization if $sanitize is available
    
    BREAKING CHANGE:
      ng-html-bind-unsafe has been removed and replaced by ng-html-bind
      (which has been removed from ngSanitize.)  ng-bind-html provides
      ng-html-bind-unsafe like behavior (innerHTML's the result without
      sanitization) when bound to the result of $sce.trustAsHtml(string).
      When bound to a plain string, the string is sanitized via $sanitize
      before being innerHTML'd.  If $sanitize isn't available, it's logs an
      exception.
Commits on Jul 11, 2013
  1. Brian Ford Igor Minar
Commits on Jul 8, 2013
  1. Pete Bacon Darwin
Commits on Jul 2, 2013
  1. Vojta Jina

    chore(travis): speed up the build

    vojtajina authored
    - parallelize the tasks
    - cache requests (e2e tests)
    
    This reduces the time from ~18min to ~12min.
    
    It makes the output little messy. We could buffer output of each task and display it once it's fully finished, nicely. I think giving instant feedback is better.
Commits on Jul 1, 2013
  1. Ken Sheedlo Igor Minar

    feat(minErr): Error stripping build step

    ksheedlo authored IgorMinar committed
Commits on Jun 25, 2013
  1. Pete Bacon Darwin
Commits on Jun 7, 2013
  1. Pete Bacon Darwin
Something went wrong with that request. Please try again.