Completed
Push — master ( 195028...450487 )
by Jason
9s
created
code/blocks/VideoBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $fields = parent::getCMSFields();
28 28
 
29
-        $source = function(){
29
+        $source = function() {
30 30
             return SilverStripeYouTubeVideo::get()->map()->toArray();
31 31
         };
32 32
 
Please login to merge, or discard this patch.
code/blocks/CallToActionBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function getCMSFields()
26 26
     {
27
-        $this->beforeUpdateCMSFields(function ($fields) {
27
+        $this->beforeUpdateCMSFields(function($fields) {
28 28
             $fields->addFieldToTab(
29 29
                 'Root.Main',
30 30
                 LinkField::create('BlockLinkID', 'Link')
Please login to merge, or discard this patch.
code/blocks/AccordionBlock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@
 block discarded – undo
67 67
     public function init()
68 68
     {
69 69
         $class = $this->AccordionClass();
70
-        Requirements::javascript(THIRDPARTY_DIR . '/jquery-ui/jquery-ui.js');
70
+        Requirements::javascript(THIRDPARTY_DIR.'/jquery-ui/jquery-ui.js');
71 71
         Requirements::customScript('
72 72
             $(function() {
73
-                $( ".' . $class . '" ).accordion({
73
+                $( ".' . $class.'" ).accordion({
74 74
                     header: ".accord-header",
75 75
                     collapsible: true, heightStyle: "content"
76 76
                 });
Please login to merge, or discard this patch.
code/objects/PageSectionObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     public function getCMSFields()
74 74
     {
75
-        $this->beforeUpdateCMSFields(function ($fields) {
75
+        $this->beforeUpdateCMSFields(function($fields) {
76 76
             $fields->addFieldToTab(
77 77
                 'Root.Main',
78 78
                 LinkField::create('BlockLinkID', 'Link'),
Please login to merge, or discard this patch.
code/objects/PromoObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     public function getCMSFields()
74 74
     {
75
-        $this->beforeUpdateCMSFields(function ($fields) {
75
+        $this->beforeUpdateCMSFields(function($fields) {
76 76
             $fields->addFieldToTab(
77 77
                 'Root.Main',
78 78
                 LinkField::create('BlockLinkID', 'Link'),
Please login to merge, or discard this patch.