Skip to content

Commit 46baacd

Browse files
authored
Merge pull request #712 from jonathanchristison/fix-external-fetch
Fix external fetch
2 parents 46ebbb6 + 68217bf commit 46baacd

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ module.exports = function (grunt) {
330330
'node_modules/jquery/dist/jquery.js',
331331
'node_modules/bootstrap/dist/js/bootstrap.min.js',
332332
'node_modules/bootstrap-select/js/bootstrap-select.js',
333-
'node_modules/components-jqueryui/jquery-ui.min.js',
333+
'node_modules/jquery-ui-dist/jquery-ui.js',
334334
'node_modules/datatables.net/js/jquery.dataTables.js',
335335
'node_modules/datatables.net-select/js/dataTables.select.js',
336336
'node_modules/moment/moment.js',

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Note:
7070

7171
3. Add the following CSS include to your HTML file(s):
7272

73-
```html
73+
```html
7474
<!-- Angular-PatternFly Styles -->
7575
<link rel="stylesheet" href="node_modules/angular-patternfly/dist/styles/angular-patternfly.min.css" />
7676
```
@@ -164,7 +164,7 @@ Note:
164164
165165
Add the npm dependencies:
166166
```shell
167-
$ npm install components-jqueryui --save
167+
$ npm install jquery-ui-dist --save
168168
$ npm install angular-dragdrop --save
169169
$ npm install angular-svg-base-fix --save
170170
```
@@ -174,7 +174,7 @@ Note:
174174
```html
175175
<!-- jquery before angular.js -->
176176
<script src="node_modules/angular-patternfly/node_modules/patternfly/node_modules/jquery/dist/jquery.js"></script>
177-
<script src="node_modules/components-jqueryui/jquery-ui.min.js"></script>
177+
<script src="node_modules/jquery-ui-dist/jquery-ui.js"></script>
178178
179179
<!-- angular-dragdrop and angular-svg-base-fix after angular.js -->
180180
<script src="node_modules/angular-dragdrop/src/angular-dragdrop.js"></script>

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"grunt-sass": "^2.0.0",
5050
"grunt-string-replace": "^1.3.1",
5151
"jasmine-core": "^2.9.0",
52+
"jquery-ui-dist": "^1.12.1",
5253
"karma": "^1.7.1",
5354
"karma-chrome-launcher": "^2.2.0",
5455
"karma-firefox-launcher": "^1.0.1",
@@ -70,7 +71,7 @@
7071
"bootstrap": "~3.3.7",
7172
"bootstrap-select": "~1.12.4",
7273
"c3": "~0.4.11",
73-
"components-jqueryui": "components/jqueryui#1.12.1",
74+
"jquery-ui-dist": "~1.12.1",
7475
"d3": "~3.5.17",
7576
"datatables.net": "^1.10.12",
7677
"datatables.net-select": "~1.2.0",

0 commit comments

Comments
 (0)