Skip to content

Commit

Permalink
officially remove support for IE7 as it breaks at the one selector th…
Browse files Browse the repository at this point in the history
…at makes the tabs so nicely accessible
  • Loading branch information
ginader committed Mar 6, 2013
1 parent 6a17dd7 commit 0ecd871
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 8 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ module.exports = function(grunt) {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
}
},
removelogging: {
dist: {
src: 'js/jquery.tabs.min.js',
dest: 'js/jquery.tabs.min.js'
}
}
});

Expand All @@ -55,8 +61,9 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks("grunt-remove-logging");

// Default task.
grunt.registerTask('default', ['jshint', 'uglify']);
grunt.registerTask('default', ['jshint', 'uglify', 'removelogging']);

};
4 changes: 2 additions & 2 deletions js/jquery.tabs.min.js

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jQuery-Accessible-Tabs",
"version": "1.9.6.1",
"version": "1.9.7",
"homepage": "http://github.com/ginader/Accessible-Tabs",
"author": {
"name": "Dirk Ginader",
Expand All @@ -11,6 +11,7 @@
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-uglify": "~0.1.2",
"grunt-contrib-watch": "~0.3.1",
"grunt-contrib-concat": "~0.1.3"
"grunt-contrib-concat": "~0.1.3",
"grunt-remove-logging": "~0.1.0"
}
}
3 changes: 2 additions & 1 deletion version-history.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ Version History:
* This commit fixes this assumption, as I only want classes on some elements https://github.com/ginader/Accessible-Tabs/pull/25
* 1.9.4 Bugfix by Patrick Bruckner to fix issue with Internet Explorer using jQuery 1.7 https://github.com/ginader/Accessible-Tabs/issues/26
* 1.9.5 new option "clearfixClass" name of the Class that is used to clear/contain floats fixes https://github.com/ginader/Accessible-Tabs/issues/28
* 1.9.6 fix for issue 34
* 1.9.6 fix for issue 34
* 1.9.7 removed Support for IE7

0 comments on commit 0ecd871

Please sign in to comment.