Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
#89 | Enable usage of {{ patternPartial }}
  • Loading branch information
vebersol authored Aug 10, 2016
commit 48b168265824c72a323e59f452a1b1c19a546e8c
1 change: 1 addition & 0 deletions src/PatternLab/PatternData/Helpers/PatternCodeHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public function run() {
$exportClean = (isset($options["exportClean"])) ? $options["exportClean"] : false;
$data["patternLabHead"] = (!$this->exportFiles) ? $stringLoader->render(array("string" => $htmlHead, "data" => array("cacheBuster" => $data["cacheBuster"]))) : "";
$data["patternLabFoot"] = (!$this->exportFiles) ? $stringLoader->render(array("string" => $htmlFoot, "data" => array("cacheBuster" => $data["cacheBuster"], "isPattern" => true, "patternData" => json_encode($patternData)))) : "";
$data['patternPartial'] = $patternData['patternPartial'];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably have a check in case the $data is set on the .json level. unless there are reserved data keys?


if (isset($patternStoreData["patternRaw"])) {

Expand Down