Skip to content

Commit

Permalink
Minor cleanup, version number update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilton Janfield committed Sep 13, 2015
1 parent 71a81e4 commit 6ae5a3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion css/jquery.enhsplitter.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* jQuery Enhanced Splitter Plugin
* LESS / CSS File
* Version 1.2.0
* Version 1.2.1
*
* https://github.com/hiltonjanfield/jquery.enhsplitter
*
Expand Down
2 changes: 1 addition & 1 deletion css/jquery.enhsplitter.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* jQuery Enhanced Splitter Plugin
* LESS / CSS File
* Version 1.2.0
* Version 1.2.1
*
* https://github.com/hiltonjanfield/jquery.enhsplitter
*
Expand Down
8 changes: 4 additions & 4 deletions js/jquery.enhsplitter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* jQuery Enhanced Splitter Plugin
* Main ECMAScript File
* Version 1.2.0
* Version 1.2.1
*
* https://github.com/hiltonjanfield/jquery.enhsplitter
*
Expand All @@ -18,7 +18,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function ($, undefined) {
(function ($) {
var splitterCount = 0;
var splitters = [];
var currentSplitter = null; // Reference to current splitter during events.
Expand Down Expand Up @@ -91,7 +91,7 @@
splitterBar.removeClass(v);
}
});
splitterBar.addClass('splitter-handle-' + arg1)
splitterBar.addClass('splitter-handle-' + arg1);
currentSplitter = null;
return this;

Expand Down Expand Up @@ -195,7 +195,7 @@
splitterSizeHalf: settings.invisible ? 0 : (settings.vertical ? splitter.outerWidth() / 2 : splitter.outerHeight() / 2),

refresh: function () {
var newSize = self.settings.vertical ? this.width() : this.height();
var newSize = self.settings.vertical ? self.width() : self.height();
if (self.containerSize != newSize) {
self.containerSize = newSize;
self.setPosition(self.currentPosition);
Expand Down

0 comments on commit 6ae5a3c

Please sign in to comment.