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
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,7 @@ uiScrollViewport directive (see below), browser window will be used as viewport.
33
33
34
34
### Dependencies
35
35
36
-
To use the directive make sure the ui-scroll.js (as transpiled from ui-scroll.coffee) is loaded in your page. You also have to include
37
-
module name 'ui.scroll' on the list of your application module dependencies.
36
+
To use the directive make sure the dist/ui-scroll.js is loaded in your page. You also have to include module name 'ui.scroll' on the list of your application module dependencies.
38
37
39
38
The code in this file relies on a few DOM element methods of jQuery which are currently not implemented in jQlite, namely
40
39
* before(elem)
@@ -43,7 +42,7 @@ The code in this file relies on a few DOM element methods of jQuery which are cu
43
42
* scrollTop() and scrollTop(value)
44
43
* offset()
45
44
46
-
File ui-scroll-jqlite.coffee houses implementations of the above methods and also has to be loaded in your page. Please note that the methods are implemented in a separate module
45
+
File dist/ui-scroll-jqlite houses implementations of the above methods and also has to be loaded in your page. Please note that the methods are implemented in a separate module
47
46
'ui.scroll.jqlite' and this name should also be included in the dependency list of the main module. The implementation currently supports missing methods
48
47
only as necessary for the directive. It is tested on IE8 and up as well as on the Chrome 28 and Firefox 20.
49
48
@@ -202,12 +201,12 @@ marked with uiScrollViewport directive, the browser window object will be used a
202
201
203
202
###Examples
204
203
205
-
Examples ([look here for example source](https://github.com/angular-ui/ui-scroll/tree/master/demo/examples)) consist of several pages (.html files) showing various ways to use the ui-scroll directive. Each page relays on its own datasource service (called `datasource`) defined in the coffescript file with the same name and .coffee extension.
204
+
Examples ([look here for sources](https://github.com/angular-ui/ui-scroll/tree/master/demo/examples)) consist of several pages (.html files) showing various ways to use the ui-scroll directive. Each page relays on its own datasource service (called `datasource`) defined in the javascript file with the same name and .js extension.
206
205
207
206
I intentionally broke every rule of proper html/css structure (i.e. embedded styles). This is done to keep the html as bare bones as possible and leave
208
207
it to you to do it properly - whatever properly means in your book.
209
208
210
-
See [index.html](http://rawgithub.com/angular-ui/ui-scroll/master/demo/index.html)
209
+
To run the examples use this [link](http://rawgithub.com/angular-ui/ui-scroll/master/demo/index.html)
0 commit comments