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

Commit 1c15cdc

Browse files
treyhunnerIgorMinar
authored andcommitted
style: fix whitespace issues
Closes #8277 Conflicts: docs/content/guide/migration.ngdoc
1 parent 0bd329d commit 1c15cdc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+61
-61
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions

TRIAGING.md

Lines changed: 2 additions & 2 deletions

docs/app/assets/css/prettify.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pre.prettyprint.linenums {
4040
}
4141
ol.linenums {
4242
margin: 0 0 0 33px; /* IE indents via margin-left */
43-
}
43+
}
4444
ol.linenums li {
4545
padding-left: 12px;
4646
font-size:12px;

docs/app/assets/js/angular-bootstrap/bootstrap.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ directive.runnableExample = ['$templateCache', '$document', function($templateCa
1111
'ng-repeat="tab in tabs track by $index" ' +
1212
'href="" ' +
1313
'class="btn"' +
14-
'ng-click="setTab($index)">' +
14+
'ng-click="setTab($index)">' +
1515
' {{ tab }}' +
1616
' </a>' +
1717
'</nav>';
@@ -103,7 +103,7 @@ directive.syntax = function() {
103103
restrict: 'A',
104104
link: function(scope, element, attrs) {
105105
function makeLink(type, text, link, icon) {
106-
return '<a href="' + link + '" class="btn syntax-' + type + '" target="_blank" rel="nofollow">' +
106+
return '<a href="' + link + '" class="btn syntax-' + type + '" target="_blank" rel="nofollow">' +
107107
'<span class="' + icon + '"></span> ' + text +
108108
'</a>';
109109
};
@@ -307,7 +307,7 @@ var popoverElement = function() {
307307
return this.titleElement.html(value);
308308
},
309309

310-
content : function(value) {
310+
content : function(value) {
311311
if(value && value.length > 0) {
312312
value = marked(value);
313313
}

docs/app/src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ angular.module('docsApp', [
2020

2121
.config(function($locationProvider) {
2222
$locationProvider.html5Mode(true).hashPrefix('!');
23-
});
23+
});

docs/app/src/errors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ angular.module('errors', ['ngSanitize'])
5959
element.html(errorLinkFilter(interpolate.apply(null, formatArgs), '_blank'));
6060
}
6161
};
62-
}]);
62+
}]);

docs/app/src/examples.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ angular.module('examples', [])
6969
formPostData('http://plnkr.co/edit/?p=preview', postData);
7070
});
7171
};
72-
}]);
72+
}]);

docs/app/src/navigationService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ angular.module('docsApp.navigationService', [])
2121

2222
}
2323
};
24-
});
24+
});

docs/app/src/versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ angular.module('versions', [])
2828

2929
$window.location = version.docsUrl + currentPagePath;
3030
};
31-
}]);
31+
}]);

docs/app/test/docsSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ describe("DocsController", function() {
3131
expect($window._gaq.pop()).toEqual(['_trackPageview', 'x/y/z']);
3232
}));
3333
});
34-
});
34+
});

0 commit comments

Comments
 (0)