]> source.dussan.org Git - jquery-ui.git/commitdiff
Widget: Update to use camelCase identifiers
authorAlexander Schmitz <arschmitz@gmail.com>
Tue, 25 Aug 2015 03:11:16 +0000 (23:11 -0400)
committerAlexander Schmitz <arschmitz@gmail.com>
Fri, 11 Sep 2015 12:36:41 +0000 (08:36 -0400)
ui/widget.js
ui/widgets/datepicker.js

index ab062cfb4cf847be9316393cecd39edee779757c..183d455b6062d6754cd092afb37d51cae43d0def 100644 (file)
@@ -25,8 +25,8 @@
        }
 }( function( $ ) {
 
-var widget_uuid = 0,
-       widget_slice = Array.prototype.slice;
+var widgetUuid = 0,
+       widgetSlice = Array.prototype.slice;
 
 $.cleanData = ( function( orig ) {
        return function( elems ) {
@@ -175,7 +175,7 @@ $.widget = function( name, base, prototype ) {
 };
 
 $.widget.extend = function( target ) {
-       var input = widget_slice.call( arguments, 1 ),
+       var input = widgetSlice.call( arguments, 1 ),
                inputIndex = 0,
                inputLength = input.length,
                key,
@@ -207,7 +207,7 @@ $.widget.bridge = function( name, object ) {
        var fullName = object.prototype.widgetFullName || name;
        $.fn[ name ] = function( options ) {
                var isMethodCall = typeof options === "string",
-                       args = widget_slice.call( arguments, 1 ),
+                       args = widgetSlice.call( arguments, 1 ),
                        returnValue = this;
 
                if ( isMethodCall ) {
@@ -274,7 +274,7 @@ $.Widget.prototype = {
        _createWidget: function( options, element ) {
                element = $( element || this.defaultElement || this )[ 0 ];
                this.element = $( element );
-               this.uuid = widget_uuid++;
+               this.uuid = widgetUuid++;
                this.eventNamespace = "." + this.widgetName + this.uuid;
 
                this.bindings = $();
index ca69d39e53bfedcd90a166af0bb2eb99ea430c88..4f14d7b233b16e3aa6e69165742bb71f1b5d6446 100644 (file)
@@ -1,3 +1,4 @@
+/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
 /*!
  * jQuery UI Datepicker @VERSION
  * http://jqueryui.com