浏览代码

Fixed indentation.

Nadim Afana 9 年之前
父节点
当前提交
6e9657105b

+ 1 - 1
src/js/select2/compat/inputData.js

@@ -118,7 +118,7 @@ define([
 
   InputData.prototype.addOptions = function (_, $options) {
     var options = $.map($options, function ($option) {      
-	  return Utils.GetData($option[0], 'data');
+      return Utils.GetData($option[0], 'data');
     });
 
     this._currentData.push.apply(this._currentData, options);

+ 4 - 4
src/js/select2/core.js

@@ -5,9 +5,9 @@ define([
   './keys'
 ], function ($, Options, Utils, KEYS) {
   var Select2 = function ($element, options) {
-	if (Utils.GetData($element[0], 'select2') != null) {
-	    Utils.GetData($element[0], 'select2').destroy();
-	}
+    if (Utils.GetData($element[0], 'select2') != null) {
+        Utils.GetData($element[0], 'select2').destroy();
+    }
 
     this.$element = $element;
 
@@ -511,7 +511,7 @@ define([
 
     this.$element.off('.select2');
     this.$element.attr('tabindex', 
-					   Utils.GetData(this.$element[0], 'old-tabindex'));
+    Utils.GetData(this.$element[0], 'old-tabindex'));
 
     this.$element.removeClass('select2-hidden-accessible');
     this.$element.attr('aria-hidden', 'false');

+ 3 - 3
src/js/select2/dropdown/attachBody.js

@@ -90,9 +90,9 @@ define([
 
     var $watchers = this.$container.parents().filter(Utils.hasScroll);
     $watchers.each(function () {
-	  Utils.StoreData(this, 'select2-scroll-position', {
-		  x: $(this).scrollLeft(),
-		  y: $(this).scrollTop()
+      Utils.StoreData(this, 'select2-scroll-position', {
+        x: $(this).scrollLeft(),
+        y: $(this).scrollTop()
 	  });
     });
 

+ 2 - 2
src/js/select2/selection/base.js

@@ -22,9 +22,9 @@ define([
     this._tabindex = 0;
 
     if (Utils.GetData(this.$element[0], 'old-tabindex') != null) {
-        this._tabindex = Utils.GetData(this.$element[0], 'old-tabindex');
+      this._tabindex = Utils.GetData(this.$element[0], 'old-tabindex');
     } else if (this.$element.attr('tabindex') != null) {
-        this._tabindex = this.$element.attr('tabindex');
+      this._tabindex = this.$element.attr('tabindex');
     }
 
     $selection.attr('title', this.$element.attr('title'));

+ 2 - 2
tests/data/array-tests.js

@@ -238,7 +238,7 @@ test('option tags can receive new data', function(assert) {
   });
 
   assert.ok(
-     Utils.GetData($select.find(':selected')[0], 'data').extra,
+    Utils.GetData($select.find(':selected')[0], 'data').extra,
     '<option> default should have new data'
   );
 
@@ -247,7 +247,7 @@ test('option tags can receive new data', function(assert) {
   });
 
   assert.ok(
-     Utils.GetData($select.find(':selected')[0], 'data').extra,
+    Utils.GetData($select.find(':selected')[0], 'data').extra,
     '<option> One should have new data'
   );
 });