Skip to content

Fixing file location on package.json #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ xcuserdata/
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

### Jetbrains WebStorm ###
.idea/

# sftp configuration file
sftp-config.json

Expand Down
8 changes: 6 additions & 2 deletions dist/js/mobile-angular-ui.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,11 @@

})();

(function() {
if (typeof FastClick === 'undefined') {
throw new Error('mobile-angular-ui\'s JavaScript requires FastClick')
}

(function(FastClick) {
'use strict';
var module = angular.module('mobile-angular-ui.core.fastclick', []);

Expand Down Expand Up @@ -1214,7 +1218,7 @@
};
});
});
})();
})(FastClick);

/**
*
Expand Down
2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.core.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.gestures.min.js.map

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions dist/js/mobile-angular-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,11 @@

})();

(function() {
if (typeof FastClick === 'undefined') {
throw new Error('mobile-angular-ui\'s JavaScript requires FastClick')
}

(function(FastClick) {
'use strict';
var module = angular.module('mobile-angular-ui.core.fastclick', []);

Expand Down Expand Up @@ -1214,7 +1218,7 @@
};
});
});
})();
})(FastClick);

/**
*
Expand Down
2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mobile-angular-ui",
"version": "1.3.4",
"description": "Mobile Angular UI",
"main": "dist/mobile-angular-ui.js",
"main": "dist/js/mobile-angular-ui.js",
"directories": {
"demo": "demo",
"dist": "dist"
Expand Down
8 changes: 6 additions & 2 deletions src/js/core/fastclick.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
(function() {
if (typeof FastClick === 'undefined') {
throw new Error('mobile-angular-ui\'s JavaScript requires FastClick')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI is failing because you forgot a semi-colon.

}

(function(FastClick) {
'use strict';
var module = angular.module('mobile-angular-ui.core.fastclick', []);

Expand Down Expand Up @@ -39,4 +43,4 @@
};
});
});
})();
})(FastClick);