Skip to content

Commit

Permalink
fix(app generator): remove slugify()-ing packageDescription
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed May 7, 2015
1 parent 75da696 commit b2b4bb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generators/app/templates/demo/_index.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>#- _.slugify(packageName) -#</title>
<meta name="description" content="#- _.slugify(packageDescription) -#">
<meta name="description" content="#- packageDescription -#">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/src/_index.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>#- _.slugify(packageName) -#</title>
<meta name="description" content="#- _.slugify(packageDescription) -#">
<meta name="description" content="#- packageDescription -#">

<link rel="stylesheet" type="text/css" href="<%- styleUrl %>" />#% if ( ie8 ) { %#<%

Expand Down

0 comments on commit b2b4bb8

Please sign in to comment.