Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 29eeb50

Browse files
committed
2 parents 234888e + 85687a6 commit 29eeb50

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Apply the directive to your form elements:
3939

4040
### Options
4141

42-
All the jQueryUI Sortable options can be passed through the directive.
42+
All the [jQueryUI Sortable options](http://api.jqueryui.com/sortable/) can be passed through the directive.
4343

4444

4545
```js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"main": "./sortable.js",
99
"dependencies": {},
1010
"devDependencies": {
11-
"angular-ui-publisher": "1.x",
11+
"angular-ui-publisher": "1.2.x",
1212
"grunt": "~0.4.x",
1313
"grunt-contrib-connect": "0.5.x",
1414
"grunt-contrib-jshint": "0.8.x",

publish.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var path = require('path');
88
module.exports = function() {
99

1010
var js_dependencies =[
11-
'bower_components/jquery/jquery.js',
11+
'bower_components/jquery/dist/jquery.js',
1212
'bower_components/jquery-ui/ui/jquery-ui.js'
1313
];
1414

@@ -30,6 +30,7 @@ module.exports = function() {
3030
// HACK TO LOAD JQUERY BEFORE ANGULAR
3131
return ['vendor/jquery.js'].concat(defaultJsFiles, js_dependencies.slice(1).map(putThemInVendorDir).concat(['dist/sortable.js']));
3232
},
33+
bowerData: { main : './sortable.js' },
3334
tocopy : css_dependencies.concat(js_dependencies)
3435
};
3536
};

test/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = function(config) {
1414

1515
// list of files / patterns to load in the browser
1616
files: [
17-
'bower_components/jquery/jquery.js',
17+
'bower_components/jquery/dist/jquery.js',
1818
'bower_components/jquery-simulate/jquery.simulate.js',
1919
'test/libs/jquery.simulate.dragandrevert.js',
2020
'bower_components/jquery-ui/ui/jquery-ui.js',

0 commit comments

Comments
 (0)