Skip to content

Commit

Permalink
chore(release): 2.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean authored Apr 2, 2019
2 parents 783786b + 1c1d9dd commit d287f00
Show file tree
Hide file tree
Showing 159 changed files with 3,887 additions and 2,358 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@ cache: npm

before_install:
- sh preinstall.sh

env:
global:
- NODE_ENV=production
187 changes: 124 additions & 63 deletions RELEASE-NOTES.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"web" : "http://www.jacklukic.com"
},
"dependencies": {
"jquery" : ">=1.8"
"jquery" : "^3.2.1"
},
"main": [
"src/semantic.less",
Expand Down
6 changes: 0 additions & 6 deletions dist/components/accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ $.fn.accordion = function(parameters) {
methodInvoked = (typeof query == 'string'),
queryArguments = [].slice.call(arguments, 1),

requestAnimationFrame = window.requestAnimationFrame
|| window.mozRequestAnimationFrame
|| window.webkitRequestAnimationFrame
|| window.msRequestAnimationFrame
|| function(callback) { setTimeout(callback, 0); },

returnedValue
;
$allModules
Expand Down
2 changes: 1 addition & 1 deletion dist/components/accordion.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/ad.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
.ui.mobile.ad {
display: none;
}
@media only screen and (max-width: 767px) {
@media only screen and (max-width: 767.99px) {
.ui.mobile.ad {
display: block;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/components/ad.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ $.api = $.fn.api = function(parameters) {
if(xhr !== undefined) {
module.debug('XHR produced a server error', status, httpMessage);
// make sure we have an error to display to console
if( xhr.status != 200 && httpMessage !== undefined && httpMessage !== '') {
if( (xhr.status < 200 || xhr.status >= 300) && httpMessage !== undefined && httpMessage !== '') {
module.error(error.statusMessage + httpMessage, ajaxSettings.url);
}
settings.onError.call(context, errorMessage, $module, xhr);
Expand Down
Loading

0 comments on commit d287f00

Please sign in to comment.