This commit is contained in:
Cameron Dawson 2013-10-31 13:23:08 -07:00
Родитель aa0fd608e5
Коммит bd93362651
3 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -7,7 +7,9 @@ module.exports = function (config) {
files: [
'app/vendor/angular/angular.js',
'app/vendor/angular/angular-*.js',
'app/vendor/jquery-2.0.3.js',
'app/vendor/ui-bootstrap-*.js',
'app/vendor/jquery-*.js',
'app/vendor/bootstrap*.js',
'app/vendor/*.js',
'app/js/**/*.js',
'app/js/controllers/**/*.js',

Просмотреть файл

@ -7,7 +7,7 @@ describe('JobsCtrl', function(){
beforeEach(module('treeherder'));
beforeEach(inject(function ($injector, $rootScope, $controller) {
beforeEach(inject(function ($injector, $rootScope, $controller, thUrl) {
$httpBackend = $injector.get('$httpBackend');
jasmine.getJSONFixtures().fixturesPath='base/test/mock';

Просмотреть файл

@ -38,7 +38,7 @@ treeherder.factory('thResultSets',
// get the resultsets for this repo
return {
getResultSets: function(offset=0, count=10) {
getResultSets: function(offset, count) {
// the default notation above only works in some browsers (firefox)
offset = typeof offset == 'undefined'? 0: offset;
count = typeof count == 'undefined'? 10: count;