From 25e1ad9a9443de6b7ebb40409af72021cc4e7b20 Mon Sep 17 00:00:00 2001 From: ggoodman Date: Tue, 11 Dec 2012 11:42:00 -0500 Subject: [PATCH] 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. --- docs/src/templates/js/docs.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/src/templates/js/docs.js b/docs/src/templates/js/docs.js index deaa78126210..a43aa6011b8c 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);