Skip to content

Commit

Permalink
WIP: fix tutorial source file links on TRAVIS
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Jan 6, 2014
1 parent 1fe7f81 commit 58d3f1f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,20 +323,22 @@ module.exports = function(grunt) {
dest: '<%= dist %>/docs',
testingUrlPrefix: '<%= protractor.auto.options.args.baseUrl %>/docs/#/',
scripts: [
'//ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.js',
'//ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js',
],
hiddenScripts: [
'http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular-animate.js',
'bower_components/google-code-prettify/src/prettify.js',
'node_modules/marked/lib/marked.js'
],
httpScripts: [
'/release/<%= pkg.name %>.js'
process.env.TRAVIS ? '/release/<%= pkg.name %>.unstable.js' : '/release/<%= pkg.name %>.js'
// '/release/<%= pkg.name %>.js'
],
styles: [
'misc/doc/css/prettify.css',
'misc/doc/css/bootstrap-flatly.css',
'<%= dist %>/release/ui-grid.css'
process.env.TRAVIS ? '<%= dist %>/release/<%= pkg.name %>.unstable.css' : '<%= dist %>/release/<%= pkg.name %>.css'
// '<%= dist %>/release/<%= pkg.name %>.css'
],
title: 'UI Grid',
titleLink: 'http://<%= site %>',
Expand Down

0 comments on commit 58d3f1f

Please sign in to comment.