You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ JavaScript Boilerplate is the collection of best practices using a design patter
46
46
The above code has defined a component called helper as a sub module of `JSB` namespace. `JSB.helper` holds an object that gets returned through `new _subModule()`. We can define all the functions that we want for the helper module inside the function `_subModule()`.
47
47
48
48
49
-
3. The third step would be to define the private values, private functions , priviledged functions etc. within the `_subModule` function. Comments have been provided as to which one is a private function and which is a priviledged one. At the end of the function the `init()` function is exposed which in turn returns the object itself. When the object is returned all the priviledged functions are exposed along with it and are accessible outside.
49
+
3. The third step would be to define the private values, private functions , privileged functions etc. within the `_subModule` function. Comments have been provided as to which one is a private function and which is a privileged one. At the end of the function the `init()` function is exposed which in turn returns the object itself. When the object is returned all the privileged functions are exposed along with it and are accessible outside.
50
50
51
51
52
52
@@ -106,7 +106,7 @@ You should be able to see the below message for a successful build and a folder
106
106
107
107
$ grunt test
108
108
109
-
We use jasmine as a unit testing framework to test our boilerplate code, as of now it's been only done for _.main.js, you would get all the test done in the next release.
109
+
We use jasmine as a unit testing framework to test our boilerplate code, as of now it's been only done for `_.main.js`, you would get all the test done in the next release.
110
110
111
111
112
112
## Contributing
@@ -130,7 +130,7 @@ Anyone and everyone is welcome to [contribute](#).
130
130
* JavaScript syntax highlighting has been added
131
131
*`MODULE` has been renamed to `JSB` for better JavaScript semantics
132
132
* Travis CI has been kicked off from the current version (v1.2)
133
-
* Made several small changes like `use strict`, dir changes, css fixes, added additional grunt plugins
133
+
* Made several small changes like `use strict`, dir changes, css fixes, added additional grunt plugins etc.
0 commit comments