Skip to content

Commit 09794e6

Browse files
committed
Removed root of namespace.
1 parent d2e6998 commit 09794e6

15 files changed

+33
-26
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ yet able to handle big data sets. There was also a strong need for dynamic rows
3131
bower install ui-listView
3232
```
3333

34-
Then include the "sl.ui-listView" module into your angular application.
34+
Then include the "ui-listView" module into your angular application.
3535

3636
```
37-
var appModule = angular.module("app", [sl.ui-listView])
37+
var appModule = angular.module("app", [ui-listView])
3838
```
3939

4040
## API

dist/ui-listView.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.ui-list-view {
22
overflow: auto !important;
33
position: relative;
4+
-webkit-overflow-scrolling: touch;
45
}
56
.ui-list-view-cell {
67
position: absolute;

dist/ui-listView.js

+6-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui-listView.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui-listView.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/contactList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
angular.module("app", ["sl.ui-listView"])
1+
angular.module("app", ["ui-listView"])
22
.controller("SampleApp", function ($scope) {
33

44
$scope.listViewOptions = {};

karma.conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = function(config) {
2929
// preprocess matching files before serving them to the browser
3030
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
3131
preprocessors: {
32+
'test/**/*.js': ['babel'],
3233
'src/**/*.js': ['babel', 'coverage']
3334
},
3435

reports/coverage/html/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h2>
5858
</div>
5959
</div>
6060
<div class="footer">
61-
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Aug 15 2015 17:57:13 GMT-0700 (PDT)</div>
61+
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Aug 16 2015 19:47:48 GMT-0700 (PDT)</div>
6262
</div>
6363
<script src="prettify.js"></script>
6464
<script>

reports/coverage/html/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ <h2>
8484
</div>
8585
</div>
8686
<div class="footer">
87-
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Aug 15 2015 17:57:13 GMT-0700 (PDT)</div>
87+
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Aug 16 2015 19:47:48 GMT-0700 (PDT)</div>
8888
</div>
8989
<script src="../prettify.js"></script>
9090
<script>

reports/coverage/html/src/ui-listView.js.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,8 @@ <h2>
523523
496
524524
497
525525
498
526-
499</td><td class="line-coverage"><span class="cline-any cline-neutral">&nbsp;</span>
526+
499
527+
500</td><td class="line-coverage"><span class="cline-any cline-neutral">&nbsp;</span>
527528
<span class="cline-any cline-neutral">&nbsp;</span>
528529
<span class="cline-any cline-neutral">&nbsp;</span>
529530
<span class="cline-any cline-neutral">&nbsp;</span>
@@ -559,6 +560,7 @@ <h2>
559560
<span class="cline-any cline-neutral">&nbsp;</span>
560561
<span class="cline-any cline-neutral">&nbsp;</span>
561562
<span class="cline-any cline-neutral">&nbsp;</span>
563+
<span class="cline-any cline-neutral">&nbsp;</span>
562564
<span class="cline-any cline-no">&nbsp;</span>
563565
<span class="cline-any cline-yes">1</span>
564566
<span class="cline-any cline-no">&nbsp;</span>
@@ -1023,7 +1025,7 @@ <h2>
10231025
<span class="cline-any cline-neutral">&nbsp;</span>
10241026
<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">/**
10251027
* @ngdoc module
1026-
* @name sl.ui-listView
1028+
* @name ui-listView
10271029
* @description
10281030
* Displays a list of items. Designed to handle large data sets.
10291031
*/
@@ -1033,7 +1035,7 @@ <h2>
10331035
&nbsp;
10341036
<span class="fstat-no" title="function not covered" >function _classCallCheck(instance, Constructor) {</span> <span class="cstat-no" title="statement not covered" >if (!(instance instanceof Constructor)) { <span class="cstat-no" title="statement not covered" >throw new TypeError("Cannot call a class as a function"); </span>} </span>}
10351037
&nbsp;
1036-
angular.module("sl.ui-listView", ["sl.ui-listView.templates"]).directive("uiListView", <span class="fstat-no" title="function not covered" >function ($rootScope, $parse) {</span>
1038+
angular.module("ui-listView", ["sl.ui-listView.templates"]).directive("uiListView", <span class="fstat-no" title="function not covered" >function ($rootScope, $parse) {</span>
10371039
<span class="cstat-no" title="statement not covered" > var arrayRegexp = /([\s\S]+?)\s+(?:in)\s+([\s\S]+?)\s*$/; </span>// "item in array [|filterName]"
10381040
&nbsp;
10391041
<span class="cstat-no" title="statement not covered" > var defaultOptions = {</span>
@@ -1050,7 +1052,8 @@ <h2>
10501052
}
10511053
&nbsp;
10521054
/**
1053-
* ngdoc controller
1055+
* @ngdoc controller
1056+
* @memberOf ui-listView
10541057
* @description
10551058
* Displays a list of items. Designed to handle large data sets. The list view's controller
10561059
* is added to the options object to provide an API.
@@ -1524,7 +1527,7 @@ <h2>
15241527

15251528
</div>
15261529
<div class="footer">
1527-
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Aug 15 2015 17:57:13 GMT-0700 (PDT)</div>
1530+
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Aug 16 2015 19:47:48 GMT-0700 (PDT)</div>
15281531
</div>
15291532
<script src="../prettify.js"></script>
15301533
<script>

reports/coverage/html/src/ui-listViewAnchor.js.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ <h2>
8383
*/
8484
"use strict";
8585
&nbsp;
86-
angular.module("sl.ui-listView").directive("uiListViewAnchor", <span class="fstat-no" title="function not covered" >function () {</span>
86+
angular.module("ui-listView").directive("uiListViewAnchor", <span class="fstat-no" title="function not covered" >function () {</span>
8787
&nbsp;
8888
<span class="cstat-no" title="statement not covered" > return {</span>
8989
require: "^uiListView",
@@ -102,7 +102,7 @@ <h2>
102102

103103
</div>
104104
<div class="footer">
105-
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Aug 15 2015 17:57:13 GMT-0700 (PDT)</div>
105+
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Aug 16 2015 19:47:48 GMT-0700 (PDT)</div>
106106
</div>
107107
<script src="../prettify.js"></script>
108108
<script>

reports/coverage/html/src/ui-listViewCell.js.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ <h2>
177177
*/
178178
"use strict";
179179
&nbsp;
180-
angular.module("sl.ui-listView").directive("uiListViewCell", <span class="fstat-no" title="function not covered" >function () {</span>
180+
angular.module("ui-listView").directive("uiListViewCell", <span class="fstat-no" title="function not covered" >function () {</span>
181181
&nbsp;
182182
<span class="cstat-no" title="statement not covered" > return {</span>
183183
require: "^uiListView",
@@ -234,7 +234,7 @@ <h2>
234234

235235
</div>
236236
<div class="footer">
237-
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Aug 15 2015 17:57:13 GMT-0700 (PDT)</div>
237+
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Aug 16 2015 19:47:48 GMT-0700 (PDT)</div>
238238
</div>
239239
<script src="../prettify.js"></script>
240240
<script>

0 commit comments

Comments
 (0)