UNPKG

@excelwebzone/symfony-admin-ui

Version:

Symfony Admin UI is a simple set of UI behaviors and components used with your [symfony-admin](https://github.com/excelwebzone/symfony-admin-bundle) application.

15 lines (12 loc) 287 B
import $ from 'jquery'; // bootstrap jQuery plugins import 'bootstrap'; // custom jQuery functions $.fn.extend({ disable() { return $(this).prop('disabled', true).addClass('disabled'); }, enable() { return $(this).prop('disabled', false).removeClass('disabled'); } });