diff --git a/html/sites/all/modules/contrib/responsive_images/responsive_images.admin.inc b/html/sites/all/modules/contrib/responsive_images/responsive_images.admin.inc
index 60ea244..74c0d18 100644
--- a/html/sites/all/modules/contrib/responsive_images/responsive_images.admin.inc
+++ b/html/sites/all/modules/contrib/responsive_images/responsive_images.admin.inc
@@ -4,7 +4,6 @@
  * @file
  * Renders administrative pages for the Responsive Images module
  */
-
 function responsive_images_admin_settings() {
   $form = array();
   $image_styles = image_style_options(FALSE);
diff --git a/html/sites/all/modules/contrib/responsive_images/responsive_images.field.inc b/html/sites/all/modules/contrib/responsive_images/responsive_images.field.inc
index 4236a52..ccb2ea8 100644
--- a/html/sites/all/modules/contrib/responsive_images/responsive_images.field.inc
+++ b/html/sites/all/modules/contrib/responsive_images/responsive_images.field.inc
@@ -70,7 +70,6 @@ function responsive_images_field_formatter_settings_summary($field, $instance, $
     $summary[] = t('No responsive images set selected');
   }
 
-
   $link_types = array(
     'content' => t('Linked to content'),
     'file' => t('Linked to file'),
@@ -128,7 +127,6 @@ function responsive_images_field_formatter_view($entity_type, $entity, $field, $
     }
     /* End workaround */
 
-
     $element[$delta] = array(
       '#theme' => 'responsive_images_formatter',
       '#item' => $item,
diff --git a/html/sites/all/modules/contrib/responsive_images/responsive_images.module b/html/sites/all/modules/contrib/responsive_images/responsive_images.module
index 6f38a43..a9c891d 100644
--- a/html/sites/all/modules/contrib/responsive_images/responsive_images.module
+++ b/html/sites/all/modules/contrib/responsive_images/responsive_images.module
@@ -32,7 +32,7 @@ function responsive_images_library() {
  * Implements hook_requirements().
  */
 function responsive_images_requirements($phase) {
-	$requirements = array();
+  $requirements = array();
   if ($phase == "runtime") {
     $library_path = responsive_images_get_library_file();
     $requirements['responsive_images'] = array(
@@ -111,15 +111,15 @@ function responsive_images_set_load_all() {
  * Load all responsive images sets as an options list array
  */
 function responsive_images_set_load_all_options() {
-	$options = array();
+  $options = array();
   ctools_include('export');
   $all_sets = ctools_export_load_object('responsive_images_set');
-	if ($all_sets) {
-		foreach ($all_sets as $set) {
-			$options[$set->name] = $set->label;
-		}
-	}
-	return $options;
+  if ($all_sets) {
+    foreach ($all_sets as $set) {
+      $options[$set->name] = $set->label;
+    }
+  }
+  return $options;
 }
 
 /**
@@ -156,12 +156,12 @@ function responsive_images_add_script() {
   if (!empty($widthBreakPoint) && is_numeric($widthBreakPoint)) {
     $settings = <<<SETTINGS
   var rwd_images = {
-		widthBreakPoint: {$widthBreakPoint},
-	};
+    widthBreakPoint: {$widthBreakPoint},
+  };
 SETTINGS;
     drupal_add_js($settings, 'inline');
   }
-	drupal_add_js($script);
+  drupal_add_js($script);
 }
 
 /**
@@ -203,7 +203,7 @@ function responsive_images_theme() {
         'item' => NULL,
         'path' => NULL,
         'image_style' => NULL,
-				'responsive_images_set' => array(),
+        'responsive_images_set' => array(),
       ),
     ),
     'responsive_image' => array(
@@ -214,7 +214,7 @@ function responsive_images_theme() {
         'title' => NULL,
         'attributes' => array(),
         'getsize' => TRUE,
-				'responsive_images_set' => array(),
+        'responsive_images_set' => array(),
       ),
     ),
   );
@@ -246,12 +246,12 @@ function theme_responsive_images_formatter($variables) {
 
   if (isset($variables['image_style'])) {
     $image['style_name'] = $variables['image_style'];
-	}
-	if (isset($variables['responsive_images_set'])) {
+  }
+  if (isset($variables['responsive_images_set'])) {
     $image['responsive_images_set'] = $variables['responsive_images_set'];
-	}
+  }
 
-	$output = theme('responsive_image', $image);
+  $output = theme('responsive_image', $image);
 
   if ($variables['path']) {
     $path = $variables['path']['path'];
@@ -271,13 +271,13 @@ function theme_responsive_images_formatter($variables) {
  */
 function theme_responsive_image($variables) {
   $path = image_style_url($variables['style_name'], $variables['path']);
-	$pathinfo = pathinfo($path);
-	$img_src = file_create_url($path);
-	$extension = $pathinfo['extension'];
-	$responsive_images_set = $variables['responsive_images_set'];
+  $pathinfo = pathinfo($path);
+  $img_src = file_create_url($path);
+  $extension = $pathinfo['extension'];
+  $responsive_images_set = $variables['responsive_images_set'];
 
-	// Add in "r." before the image extension, to make the image responsive
-	$img_src = str_replace('.' . $extension, '.r.' . $extension, $img_src);
+  // Add in "r." before the image extension, to make the image responsive
+  $img_src = str_replace('.' . $extension, '.r.' . $extension, $img_src);
 
   $attributes = $variables['attributes'];
   $attributes['src'] = $img_src;
