diff options
| author | ggoodman | 2012-12-11 11:42:00 -0500 |
|---|---|---|
| committer | Pete Bacon Darwin | 2012-12-11 19:04:46 +0000 |
| commit | 25e1ad9a9443de6b7ebb40409af72021cc4e7b20 (patch) | |
| tree | d72dce2ab54bb420efe22bc00260fe37a7c95223 | |
| parent | 37cced6296f0433d61434dad5878bb7036e6a493 (diff) | |
| download | angular.js-25e1ad9a9443de6b7ebb40409af72021cc4e7b20.tar.bz2 | |
feat(docs): Add angularjs tag to plunks and make private
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`.
Also, make these generated Plunks private by default.
| -rw-r--r-- | docs/src/templates/js/docs.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/src/templates/js/docs.js b/docs/src/templates/js/docs.js index deaa7812..a43aa601 100644 --- a/docs/src/templates/js/docs.js +++ b/docs/src/templates/js/docs.js @@ -190,7 +190,9 @@ docsApp.serviceFactory.openPlunkr = function(templateMerge, formPostData, angula }); postData['files[index.html]'] = templateMerge(indexHtmlContent, indexProp); - + postData['tags[]'] = "angularjs"; + + postData.private = true; postData.description = 'AngularJS Example Plunkr'; formPostData('http://plnkr.co/edit/?p=preview', postData); |
