Skip to content

Commit 26e4f3a

Browse files
Update head for responsiveness on mobile, fix typos in readme
1 parent cbb64bb commit 26e4f3a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ import '/imports/ui/stylesheets/style.css';
105105

106106
Apart from the last line that imports style.css directly, the other lines all invoke the index.js file in the specified directory.
107107

108-
We use this approach to make it more simple to understand what code is loaded and in what order, and to simplify debugging when some code or templates do not appear to be loaded. In our approach, there are only two places to look for top-level imports: the main.js files in client/ and servers/, and the index.js files in import subdirectories.
108+
We use this approach to make it more simple to understand what code is loaded and in what order, and to simplify debugging when some code or templates do not appear to be loaded. In our approach, there are only two places to look for top-level imports: the main.js files in client/ and server/, and the index.js files in import subdirectories.
109109

110110
Note that this two-level import structure ensures that all code and templates are loaded, but does not ensure that the symbols needed in a given file are accessible. So, for example, a symbol bound to a collection still needs to be imported into any file that references it. For example, a server startup file needs to reference the symbol "Stuff" in order to initialize the collection, so it must import the symbol Stuff:
111111

@@ -174,6 +174,8 @@ In a nutshell, meteor-application-template includes support for:
174174
* Accounts (accounts-ui, accounts-password and useraccounts:semantic-ui)
175175
* Routing (flow-router, flow-router-helpers, active-route)
176176
* Presentation (semantic-ui, spin)
177+
178+
It does not provide security (both autopublish and insecure packages) remain enabled. This is intentional.
177179

178180

179181
### Application functionality

app/client/head.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<meta name="mobile-web-app-capable" content="yes">
26
<title>meteor-application-template</title>
37
<!-- If you update favicon.ico in the public directory, then increment the "v=" below to force update. -->
48
<link rel="icon" sizes="16x16 32x32" href="/favicon.ico?v=2">

0 commit comments

Comments
 (0)