Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

diff --git a/src/Pim/Bundle/EnrichBundle/Resources/public/js/product/field/multi-select-field.js b/src/Pim/Bundle/EnrichBundle/Resources/public/js/product/field/multi-select-field.js
index 189699d..1c37821 100644
--- a/src/Pim/Bundle/EnrichBundle/Resources/public/js/product/field/multi-select-field.js
+++ b/src/Pim/Bundle/EnrichBundle/Resources/public/js/product/field/multi-select-field.js
@@ -16,9 +16,10 @@ define(
'routing',
'pim/attribute-option/create',
'pim/security-context',
- 'pim/initselect2'
+ 'pim/initselect2',
@Ocramius
Ocramius / application.config.php
Created July 26, 2013 14:39
Disabling BjyAuthorize when in console environment in a Zend Framework 2 Application
<?php
use Zend\Console\Console;
$config = array(
'modules' => array(
'Application',
'DoctrineModule',
'DoctrineORMModule',
// ...
@Ocramius
Ocramius / User.php
Last active February 16, 2024 14:57
Doctrine 2 ManyToMany - the correct way
<?php
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @ORM\Entity()
* @ORM\Table(name="user")
*/
class User