Skip to content

Commit 94cff12

Browse files
authored
Merge pull request #9 from kounelios13/patch-1
fixed header markup
2 parents 665b6b6 + 4b08b19 commit 94cff12

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Please note that in order to be able to load an asset from a CDN in the built fi
99

1010
**If you want IE6-8 support**, clone this repo, but replace the jQuery file with a jQuery 1.X release. The jQuery 2 used in this project does not work with those browsers, a 1.X release is needed. Modify the jQuery path in [app.js](https://github.com/requirejs/example-jquery-cdn/blob/master/www/js/app.js#L9), to for example `//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min`
1111

12-
###Project structure
12+
### Project structure
1313

1414
tools/
1515

@@ -28,7 +28,7 @@ www/js/
2828
- app/
2929
- main.js
3030

31-
###How it's set up
31+
### How it's set up
3232
The main file of this setup is www/js/app.js. It is loaded from app.html by this line:
3333
```html
3434
<script data-main="js/app" src="js/lib/require.js"></script>
@@ -60,11 +60,11 @@ define(["jquery", "jquery.alpha", "jquery.beta"], function($) {
6060
});
6161
```
6262

63-
###How to see it in action
63+
### How to see it in action
6464

6565
Just serve up the www/ folder using any web server you'd like. To get you set up quickly, we include a node.js static file server in tools/. Start the server by typing `node tools/server.js` from the command line, and then go to [localhost:8888/www/app.html](http://localhost:8888/www/app.html) in your browser.
6666

67-
###How to optimize it using r.js
67+
### How to optimize it using r.js
6868
To use the optimizer, you need [node.js](http://nodejs.org) or Java 6 installed. These instructions assume Node is being used. See the [Optimization page](http://requirejs.org/docs/optimization.html) for more information.
6969

7070
r.js and a build configuration is included in the tools/ folder. To build, navigate to tools/ and type `node r.js -o build.js`. You will find the built product in the www-build folder. If you serve that directory instead, you can see in the network panel of the web developer tools that the files aren't loaded separately any more.

0 commit comments

Comments
 (0)