Issue #2158943: Replace jQuery UI dialog with supported library or polyfill
9 open threads
Merge request reports
Activity
5 5 * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/commands.html#the-dialog-element 6 6 */ 7 7 8 (function ($, Drupal, drupalSettings) { 8 (function ($, Drupal, drupalSettings, Popper, displace, dialogPolyfill) { 9 Element.prototype.dialogObject = {}; 10 11 Element.prototype.dialog = function (...args) { I'm not too comfortable with that, we're adding the dialog() method on all dom elements (textarea, inputs, spans, a, etc.)
Edited by Théodore Biadalachanged this line in version 11 of the diff
5 5 * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/commands.html#the-dialog-element 6 6 */ 7 7 8 (function ($, Drupal, drupalSettings) { 8 (function ($, Drupal, drupalSettings, Popper, displace, dialogPolyfill) { 9 Element.prototype.dialogObject = {}; changed this line in version 11 of the diff
15 } 16 if (typeof args[0] === 'string') { 17 if (typeof args[1] !== 'undefined') { 18 if (args[0] === 'option' && typeof args[2] !== 'undefined') { 19 const option = {}; 20 option[args[1]] = args[2]; 21 return this.dialogObject[args[0]](option); 22 } 23 return this.dialogObject[args[0]](args[1]); 24 } 25 26 return this.dialogObject[args[0]](); 27 } 28 }; 29 30 $.fn.extend({ changed this line in version 11 of the diff
22 } 23 return this.dialogObject[args[0]](args[1]); 24 } 25 26 return this.dialogObject[args[0]](); 27 } 28 }; 29 30 $.fn.extend({ 31 dialog(...args) { 32 const itReturned = this[0].dialog(...args); 33 return itReturned || this; 34 }, 35 }); 36 37 Drupal.Dialog = class { changed this line in version 11 of the diff
136 title: null, 137 width: 300, 138 // Drupal-specific extensions: see dialog.jquery-ui.js. 139 140 // When using this API directly (when generating dialogs on the client 141 // side), you may want to override this method and do 142 // `jQuery(event.target).remove()` as well, to remove the dialog on 143 // closing. 144 close(event) { 145 Drupal.dialog(event.target).close(); 146 Drupal.detachBehaviors(event.target, null, 'unload'); 147 }, 148 }; 149 } 150 151 processPosition() { We should keep using the jqueryui position code for now? and replace in #3201170 that would make the review easier
changed this line in version 11 of the diff
420 this.createTitlebar(); 421 this.createButtonPane(); 422 423 if (this.dialogOptions.draggable && $.fn.draggable) { 424 console.log( 425 '@todo make draggable or decide that draggable is not needed', 426 ); 427 } 428 if (this.dialogOptions.resizable && $.fn.resizable) { 429 this.makeResizable(); 430 } 431 432 this.isOpen = false; 433 } 434 435 createButtonPane() { changed this line in version 11 of the diff
463 primaryIndex = index; 464 delete opts.buttons[index].primary; 465 break; 466 } 467 } 468 469 // If we already have a button pane, remove it 470 this.uiDialogButtonPane.remove(); 471 this.uiButtonSet.empty(); 472 473 if ($.isEmptyObject(buttons) || ($.isArray(buttons) && !buttons.length)) { 474 this.uiDialog.removeClass('ui-dialog-buttons'); 475 return; 476 } 477 478 $.each(buttons, function (name, props) { changed this line in version 11 of the diff
703 getAppendTo() { 704 const element = this.dialogOptions.appendTo; 705 if (element && (element.jquery || element.nodeType)) { 706 return $(element); 707 } 708 return $(document) 709 .find(element || 'body') 710 .eq(0); 711 } 712 713 /** 714 * At the moment this is flat-out still using jQueryUI resizable as a 715 * suitable replacement hasn't been found and it's far too complex to 716 * provide a quick custom solution. 717 */ 718 makeResizable() { I vote for getting rid of that #3201835
changed this line in version 11 of the diff
added 18 commits
-
eaaa0f3a...9c9c981f - 16 commits from branch
project:9.2.x
- d071358e - Import and reroll
- d9814015 - Update lib to 0.5.6
-
eaaa0f3a...9c9c981f - 16 commits from branch
added 427 commits
-
d9814015...88d83002 - 163 commits from branch
project:9.2.x
- 780765a7 - Drupal 9.3.x-dev
- 7a0988fc - Issue #3211605 by nod_, mherchel: Update Popper.js to version 2.9.2
- 4214cd75 - Issue #3211606 by nod_, mherchel: Update Tabbable to version 5.2.0
- d6726045 - Issue #3211888 by mherchel, Gauravmahlawat: Olivero: Layout Builder 33/34/33 layout broken in IE11
- e939dbe6 - Issue #3209456 by kpa, piggito, mherchel: Update Underscore.js to the latest version (1.13.1)
- e0d87b69 - Issue #3211602 by mherchel, nod_, andypost: Update jQuery Form to 4.3.0
- 61a07efc - Issue #3185165 by Spokje, vipin.mittal18, Suresh Prabhu Parkala, lauriii,...
- 0bff06df - Issue #3189680 by mondrake, daffie, alexpott: Deprecate the 'throw_exception'...
- 27070f4c - Issue #3100386 by tedbow, ravi.shankar, phenaproxima, nikitagupta,...
- 0e5db56e - Issue #2902548 by guilhermevp, mfernea, Spokje, quietone, longwave: Fix...
- e7d67e91 - Issue #3211805 by xjm, Kristen Pol, longwave: Update composer/composer dev...
- e9a53cb2 - Issue #3143096 by jedihe, jyotimishra123, shetpooja04, alexpott, mradcliffe:...
- 8dccf4b3 - Revert "Issue #3143096 by jedihe, jyotimishra123, shetpooja04, alexpott,...
- bd2a1eab - Issue #3206932 by Matroskeen, quietone, alexpott: Rename targetEntityType...
- c5e16af1 - Issue #3048423 by claudiu.cristea, longwave, klausi: Convert...
- 525c3d95 - Issue #3211164 by alexpott, catch: Random errors in Javascript Testing
- de89108c - Issue #3211866 by mondrake, daffie: Upsert::execute() return values are inconsistent
- a3c114e6 - Issue #3143096 by jedihe, phenaproxima, jyotimishra123, shetpooja04, alexpott,...
- 38ebeed9 - Issue #3212177 by alexpott, lauriii: Update caniuse-lite as it is outdated
- 09c38b44 - Issue #3211810 by alexpott, xjm, Spokje, Amber Himes Matz, Kristen Pol,...
- b48ad909 - Issue #3179734 by zrpnr, bnjmnm, lauriii: Refactor uses of the :tabbable selector and deprecate it
- a3ca88eb - Issue #2882276 by benjifisher, estoyausente, nuez, kristiaanvandeneynde,...
- f09730b5 - Issue #3212521 by Spokje, longwave: cspell dislikes identifer in...
- abec240b - Issue #3212281 by Sakthivel M, tushar_sachdeva, chetanbharambe: Paragraph...
- 8f711d9d - Issue #3153265 by kiran.kadam911, hinal05, komalk, mherchel, kishor_kolekar,...
- 9d05a12a - Issue #3211897 by mherchel, Gauravmahlawat: Olivero: On mobile width, submenu...
- fac878ce - Issue #3191725 by mherchel, kostyashupenko, Kristen Pol, andy-blum, lauriii,...
- 11af82a6 - Issue #3190120 by mherchel, KapilV, pragati_kanade, djsagar, andy-blum,...
- 5c952d4a - Issue #3212539 by n4r3n, Wim Leers: Map all Link module's fieldformatters from D7 to D8/D9
- ebf0c951 - Issue #3212354 by guilhermevp, Chi: AggregatorFeedBlock::build must always return array
- 011f0e9e - Issue #3211474 by longwave, daffie:...
- 37cb5dda - Issue #3211480 by longwave, daffie:...
- d59f8588 - Issue #3207456 by Spokje, longwave, alexpott: Drupal 9 is dependent on symfony/mime directly
- 95edf33a - Issue #3212034 by longwave, quietone: Account emails are missing newlines due to malformed YAML
- 08a9dcb2 - Issue #3212998 by mherchel, Gauravmahlawat: Olivero: Normalize JavaScript...
- 62e06d8c - Issue #2938803 by David_Rothstein, spitzialist, vsujeetkumar, yepa, harsha012,...
- a35df16d - Issue #3211780 by mondrake, daffie: Deprecate Connection::queryTemporary()
- 84a6dadd - Issue #3145563 by Charlie ChX Negyesi, NigelCunningham, alexpott, joachim,...
- cf806905 - Issue #2608750 by phenaproxima, shriaas2898, KapilV, mohit_aghera, RenatoG,...
- 2e9d4787 - Revert "Issue #2608750 by phenaproxima, shriaas2898, KapilV, mohit_aghera,...
- 3eebb1b1 - Issue #2608750 by phenaproxima, shriaas2898, KapilV, mohit_aghera, RenatoG,...
- 720de231 - Issue #3191649 by mherchel, bnjmnm: Update Sortable to 1.13.0
- b9a52da4 - Issue #3212704 by Gauravmahlawat, mherchel: Olivero: content below region...
- c6adb7c7 - Issue #2730631 by jibran, benjifisher, claudiu.cristea, pdenooijer, merauluka,...
- 9db6d56a - Issue #3211599 by Spokje, Wim Leers, lauriii, zrpnr, cilefen: Update CKEditor to version 4.16.0
- a9560b32 - Issue #2974128 by Majdi, quietone: Missing parameter in process plugin DefaultValue example
- 2690c63d - Issue #3211936 by alexpott, daffie: Race condition when generating sub directories for image styles
- 4731e3c6 - Issue #588438 by dww: FormTest::testRequiredFields() fails to drupal_render()...
- 79dd8321 - Issue #3041885 by tedbow, beautifulmind, dww, ayushmishra206, phenaproxima,...
- 1ab0f484 - Issue #2868258 by joegraduate, Lendude, Jons, dawehner, alexpott, larowlan:...
- 39110888 - Issue #3210888 by longwave: Undefined static method Drupal\Core\Database\Connection::serialize()
- 07905362 - Issue #3163487 by sudiptadas19, IT-Cru, raman.b, idebr, dawehner: Breadcrumb:...
- 50b89413 - Issue #3212547 by Spokje, quietone, alexpott, longwave: cspell Dictionaries...
- 0ed127e8 - Issue #3211601 by bnjmnm, nod_, zrpnr, lauriii: Update jQuery to version 3.6.0
- c2103890 - Issue #3210913 by quietone, Wim Leers, paulocs: DbDumpCommand fails when data...
- 996b3578 - Issue #3210372 by pfrenssen, claudiu.cristea: Fatal error when passing...
- d8bba172 - Issue #3190820 by pavnish, WalkingDexter, ayushmishra206, durgeshs, daffie:...
- 35c43b54 - Issue #3025727 by Krzysztof Domański, Matroskeen, alexpott: Using a data...
- d4726b18 - Issue #3213638 by bpstr: Fix incorrect Migration plugin description
- e821dc58 - Issue #3160307 by Hardik_Patel_12, jungle, Kristen Pol, larowlan, catch:...
- ba7c2c58 - Issue #3212005 by guilhermevp, tedbow, phenaproxima: Add @throws docs to...
- af458de2 - Issue #3191061 by jcisio, quietone: Remove todo in class Drupal\Core\Routing\RequestContext
- bf132da9 - Issue #3207405 by Nikhil Banait, Gauravmahlawat, Abhijith S: Add 'Reset'...
- db54bf04 - Issue #3132778 by kim.pepper, quietone, jungle, daffie: Replace usages of...
- eddba9a3 - Issue #3193189 by quietone, jibran: Get only translations for localized...
- 16ba314e - Issue #2742997 by andypost, wizonesolutions, erozqba, naveenvalecha, johanv,...
- 3ccf8445 - Issue #3208000 by Gauravmahlawat, mherchel: remove toolbar.html.twig template as #3174422 is fixed
- 35021980 - Issue #2909369 by Spokje, alexpott, longwave, mfernea: Fix...
- f5d9fec8 - Issue #3123070 by Spokje, msuthars, quietone, longwave, jungle: Fix...
- baa711c9 - Issue #3107130 by PCate, kishor_kolekar, ravi.shankar, Vidushi Mehta,...
- 58fb7f8d - Issue #3176361 by alexpott, naresh_bavaskar, longwave: Remove semi-colon from...
- 573e752f - Issue #3209628 by longwave, rachel_norfolk, antiorario, phenaproxima,...
- d2647ca5 - Issue #3213022 by andypost, jhodgdon: When generating link to non-existent...
- b50a4ddb - Issue #3184527 by webflo: Reduce cache variations in locale cache
- 85ee5e16 - Issue #3209618 by catch, longwave, Neslee Canil Pinto, daffie, andypost, Gábor...
- a9fbf270 - Issue #3214234 by alexpott: Add core/class_aliases.php
- b9f132b7 - Issue #2969190 by manish.upadhyay, ranjith_kumar_k_u, Neslee Canil Pinto,...
- a6124cc0 - Issue #3190815 by Wim Leers, quietone, NickDickinsonWilde, benjifisher,...
- 201212c8 - Issue #3177660 by mondrake, andypost, anmolgoyal74, daffie, alexpott: Remove...
- 36353733 - Issue #3210632 by Spokje, longwave, daffie: Update dependencies for Drupal 9.2
- 3379d012 - Issue #3210633 by Spokje, bnjmnm, longwave, zrpnr: Update JavaScript dependencies for Drupal 9.2
- a4715517 - Issue #3214308 by longwave, alexpott: Merge class_aliases.php into bootstrap.inc
- 13c58551 - Issue #3211838 by mondrake, longwave: Convert assertions involving use of...
- 6802ea33 - Issue #3207968 by quietone, longwave, Spokje: Replace @codingStandards...
- 1c94be4a - Issue #3126747 by phenaproxima, tim.plunkett, TR, Spokje:...
- 8db131bd - Issue #3214412 by bnjmnm, tedbow: Build + prettier not run after yarn dependency update 3210633
- 9630f296 - Issue #3051766 by bnjmnm, alexpott, Oleksiy, finnsky, zrpnr, jungle, Wim...
- 8dbd33a7 - Issue #3144854 by Spokje, bnjmnm, mherchel, zrpnr, komalk, Kristen Pol: Remove...
- 7d68989b - Issue #3210443 by mherchel, bnjmnm, andy-blum, guilhermevp, Gauravmahlawat,...
- 3f75f72d - Issue #3131281 by mondrake, rahulrasgon, longwave, ridhimaabrol24,...
- 4a72cc31 - Issue #3207734 by Spokje, quietone: Fix Drupal.Commenting.InlineVariableComment
- 3872f1a8 - Issue #3139404 by mondrake, munish.kumar, pavnish, longwave: [May 25, 2021]...
- 0999af5d - Issue #3215039 by andypost: Update symfony dependencies to latest release
- 25de8095 - Issue #3173012 by mherchel, kiran.kadam911, andy-blum, Gauravmahlawat,...
- a442cd75 - Issue #3200628 by tushar_sachdeva, chetanbharambe, mherchel: Olivero's small...
- 31533404 - Issue #3213557 by Sakthivel M, guilhermevp, tushar_sachdeva: Display title...
- 88a03eab - Issue #3214920 by catch, longwave, Gábor Hojtsy: Increase DRUPAL_RECOMMENDED_PHP to 7.4
- a5103bb8 - Issue #3191782 by quietone, Wim Leers, mohit_aghera: Fix dependency in d6 user...
- 30e300fe - Issue #3109767 by quietone, mtodor, Kristen Pol, larowlan: Unable generate...
- 40dabffe - Issue #3204461 by quietone, larowlan: Avoid error from sort in ValidateMigrationStateTestTrait
- 98a653c2 - Issue #3195888 by alexpott, quietone: Check dependencies are correct in...
- 24494c2e - Issue #3189463 by quietone, Wim Leers, adityasingh, ayushmishra206: all...
- 9ec511c8 - Issue #1870006 by nod_, BarisW, alwaysworking, Renrhaf, pk188,...
- 0daba4e9 - Issue #3214140 by Gauravmahlawat, manojithape, mitthukumawat: Olivero: Message...
- f3ad0680 - Issue #3133162 by jungle, ravi.shankar, Deepak Goyal, Neslee Canil Pinto,...
- 3066423e - Issue #3186661 by Spokje, longwave, mondrake, paulocs, daffie: [May 24, 2021]...
- f8818603 - Issue #3202493 by jenniferaube, vsujeetkumar, Sakthivel M, bnjmnm,...
- 9eb49dd8 - Issue #3215916 by catch, larowlan: Update ckeditor to 4.16.1
- a5bb99c9 - Issue #3215929 by larowlan, Spokje, effulgentsia: Fix CKEditor versions
- a5f6cea0 - Issue #3186364 by effulgentsia, longwave, xjm, jungle, alexpott,...
- b1886b97 - Issue #3215280 by longwave, effulgentsia: Bump minimum dependencies required for tests to pass
- 1e3b4928 - Issue #3209617 by longwave, daffie, catch: [Symfony 6]...
- 09345e1f - Issue #3213295 by effulgentsia, tedbow, longwave, Spokje, xjm, catch: Update...
- 2c709ec1 - Issue #3214565 by Spokje, longwave, alexpott, Lendude: [random test failure]...
- 8b8fc1ef - Issue #3162016 by longwave, andypost, Hardik_Patel_12, catch, alexpott,...
- 89fcf77b - Issue #3215830 by longwave: Symfony 6 KernelEvent bridge is incompatible with...
- ab49a62b - Issue #84883 by quietone, alexpott, DuaelFr, scor, roderik, TR, pillarsdotnet,...
- 63c14b7c - Issue #3216088 by Spokje, xjm, longwave: Update Symfony 5 components to 5.3
- 9306f069 - Revert "Issue #3162016 by longwave, andypost, Hardik_Patel_12, catch,...
- 1952f640 - Issue #3217322 by effulgentsia, xjm, Gábor Hojtsy: Update dependencies except...
- 5be50483 - Issue #3174200 by mondrake, longwave: Use PHPUnit-bridge polyfills for forward compatibility layer
- 1926ec30 - Issue #3214487 by paulocs, vakulrai, vetal4ik, manojithape, nishantghetiya,...
- 431f9150 - Issue #3067116 by oknate, nishantghetiya, dww, naresh_bavaskar, effulgentsia:...
- 23dcd9dc - Issue #3202818 by Spokje, mherchel, Gábor Hojtsy, catch, Wim Leers, shaal,...
- 23d59bba - Issue #3122056 by Wim Leers, mohit_aghera, Kristen Pol: Do not track viewing...
- 63c54d94 - Issue #3217709 by sudiptadas19, mondrake: Replace usages of assertRegExp(), that is deprecated
- af924ba2 - Issue #3217712 by sudiptadas19, mondrake: Replace usages of...
- bfe59b21 - Issue #2922570 by Berdir, paulocs, anmolgoyal74, dww, ravi.shankar, tobiasb,...
- 50981069 - Issue #3217711 by Spokje, sudiptadas19, guilhermevp, mondrake: Replace usages...
- 0cd1d38b - Issue #2396145 by dww, Dom., mgifford, Pancho, idebr, vdanielpop, specky_rum,...
- cf221c04 - Issue #3214773 by jmsosso, Spokje: Wrong type hint for getActiveMultiple() and...
- caac9c9f - Issue #3084436 by longwave, simonminter, Spokje, alexpott, alisonjo315,...
- 00b7574f - Issue #3210898 by quietone, BhumikaVarshney: Combine tests using...
- 2cab2f40 - Issue #2977495 by alexfarr, Sam152, Neslee Canil Pinto, timmillwood, alexpott:...
- 2d2fe313 - Issue #3217713 by guilhermevp, vsujeetkumar, mondrake, sudiptadas19,...
- c7f050d5 - Issue #3218024 by Charlie ChX Negyesi, longwave, Berdir: Field called "link"...
- ee6a1a71 - Issue #3213734 by longwave, mondrake: AssertButtonsTrait has invalid PHP syntax
- a6ee84df - Issue #2726881 by jcisio, joachim: Remove pager from admin field list
- ca836396 - Issue #3134554 by Matroskeen, larowlan, paulocs, aluzzardi, phenaproxima,...
- 8e58cdb8 - Issue #3213616 by n4r3n, Wim Leers, quietone: Map all Datetime module's field...
- bb180f95 - Issue #3211072 by mstrelan: ModeratedContentController has an unlisted dependency on node.module
- a9af2c66 - Issue #3116804 by dww, tedbow, benjifisher, heddn, xjm, jungle: Add tedbow and...
- ee93cbc7 - Issue #3217716 by sudiptadas19, Meenakshi_j, hmendes, guilhermevp, mondrake:...
- caa48454 - Issue #3012172 by acbramley: EntityViewBuilder::addContextualLinks assumes an...
- d0e404c8 - Issue #3218139 by gapple, longwave: Stop altering existing Permissions-Policy...
- 53c2be87 - Issue #3217732 by bnjmnm, Wim Leers: filterStatus behavior can't find settings...
- e587d1e7 - Issue #3217714 by mondrake, ravi.shankar, guilhermevp, longwave: Replace...
- 9edbbe5a - Issue #3215198 by phma: Thumbnail updates read width and height from source...
- 93d251d7 - Issue #2716019 by joseph.olstad, rodrigoaguilera, _Archy_, Lendude, mdupont,...
- 88fa77b4 - Issue #3218586 by mondrake: Missed one conversion to expectWarning()
- 116ebd1e - Issue #3217706 by Spokje, longwave, guilhermevp, mondrake: Replace usages of...
- ff8ead85 - Issue #2359675 by Grimreaper, jhedstrom, paulocs, anrikun, Lendude, larowlan,...
- 70175bc0 - Issue #3215611 by alexpott, longwave: Service deprecations are only triggered...
- 6b94f7d8 - Issue #3216552 by andypost, mondrake, Gauravmahlawat, daffie, joachim:...
- 3fb63acc - Issue #3187318 by sudiptadas19, eddie_c, huzooka, anmolgoyal74, quietone, Wim...
- 96477048 - Issue #2927874 by mohit_aghera, ao2, guilhermevp, Gauravmahlawat, larowlan,...
- a64683e9 - Issue #3218658 by nod_: Update @drupal/once to 1.0.1
- 846675a5 - Issue #3217861 by jhodgdon: Documentation needed in...
- ea475b41 - Issue #3092553 by amateescu, dixon_, shaal, xjm, ckrina, jrockowitz, webchick,...
- cc594d5e - Issue #3217357 by Anandhi K, jungle, Rinku Jacob 13, longwave: Replace...
- c1730d95 - Issue #3064596 by neclimdul, quietone: Avoid format calls in DateTimePlus::createFromFormat
- 518bcc2a - Issue #3214395 by YesCT, paulocs: Add ModuleUninstallValidatorInterface hint to hook_uninstall docs
- c5820b9a - Issue #3177415 by ramil g, joelpittet, jplana, kishor_kolekar: Vertical Tabs...
- acbf5152 - Issue #3097416 by b_sharpe, phenaproxima, Chris Burge, seanB, webchick,...
- 5962e90b - Issue #3208373 by pac, joachim: LanguageNegotiationContentEntity description...
- cc5b85ed - Issue #3212747 by Tom Konda: Unneeded BABEL_ENV is configured on CSS compile...
- 37bd3765 - Issue #3124762 by Spokje, dww, johnwebdev, paulocs, piyuesh23, Suresh Prabhu...
- 3bfedda4 - Issue #3213621 by huzooka: Fix D7 migration database fixture (to follow...
- e48dcff4 - Issue #2879159 by Spokje, LoMo, ravi.shankar, quietone, mondrake: Some calls...
- ba1ff55e - Issue #3053167 by quietone, marvil07: Move state entries out of migrate_drupal.migrate_drupal.yml
- 8cc548c0 - Issue #3219541 by tunic, longwave: Remove redundant call...
- 878d3590 - Issue #3036593 by bbrala, gabesullice, BryanRice, anmolgoyal74, effulgentsia,...
- 1d5e219f - Issue #3156396 by TR, pavnish, mondrake, longwave, catch, jungle: Use...
- f992a8bf - Issue #3183036 by claudiu.cristea, jibran, Berdir: Don't instantiate access...
- ca2c3d48 - Issue #2228087 by quietone, longwave, Kristen Pol, jungle, VladimirAus,...
- 026280b8 - Issue #3215143 by paulocs, daffie: Replace replace assertEqual() in some comments
- 0211e1eb - Issue #3067727 by jhodgdon, batigolix, shetpooja04, NitinLama, Pooja Ganjage,...
- 49eb106b - Issue #3175718 by mondrake, alexpott, jungle, longwave: Random fails due to...
- acb621d0 - Issue #3048848 by jmikii, carletex, andypost, sulfikar_s, mrinalini9,...
- b796e377 - Issue #2511892 by bserem, rachel_norfolk, hussainweb, ravi.shankar, mikeker,...
- f29f4a3c - Issue #3094482 by jhodgdon, shetpooja04, Amber Himes Matz, andypost,...
- 0f7faa63 - Issue #3095739 by jhodgdon, siddhant.bhosale, pratik_kamble, andypost,...
- 5b5988c8 - Issue #2819585 by paulocs, LoMo, Patil_kunal27: Identical switch case block in...
- 62430b71 - Issue #2268787 by tim.plunkett: Block plugin forms should not rely on being...
- 1c17abd7 - Issue #3164520 by james.williams, Matroskeen, huzooka, raman.b, quietone,...
- 1640eb23 - Issue #3209353 by Matroskeen, nishantghetiya, quietone: Add documentation for...
- eaf29586 - Issue #3196583 by Matroskeen, Wim Leers, quietone, larowlan: MigrationLookup...
- d88f3348 - Issue #3103031 by quietone, alexpott, heddn, Wim Leers: Add bundle to the...
- 1327c4dd - Issue #3199741 by Matroskeen, quietone: Add documentation for remaining source plugins
- c8649779 - Issue #3218968 by alexpott: Support NULL services in the container
- 91b2327c - Issue #2902540 by guilhermevp, Spokje, longwave, quietone, mfernea: Fix...
- 49beb9d8 - Issue #3039074 by claudiu.cristea, longwave, tedbow: Remove drupal_static()...
- 2e7bd804 - Issue #3206293 by tedbow, phenaproxima: Create ProjectRelease class to...
- 671433d1 - Issue #3035174 by tim.plunkett, andypost, ankithashetty, jwwj, mrinalini9,...
- a25c727d - Issue #2124069 by voleger, andypost, martin107, damiankloip, cburschka,...
- f127c934 - Issue #3039055 by claudiu.cristea, tedbow: Remove useless reset of...
- 2c57cbec - Issue #3220450 by xjm, phenaproxima: OEmbed...
- 257efe54 - Issue #3218660 by alexpott: help_topics module can break during module uninstall
- 9f8f38d8 - Issue #2681947 by vasi1186, dan2k3k4, Leksat, Lendude, raman.b, yogeshmpawar,...
- 5dccbedb - Issue #3184542 by jlbellido, mitthukumawat, alexpott: Increase field label maxlength
- 4880807b - Issue #3216106 by paulocs, Gauravmahlawat, guilhermevp, AaronMcHale,...
- 6a533564 - Issue #3210199 by mherchel, Gauravmahlawat, bnjmnm, thejimbirch: Olivero:...
- 33ba4582 - Issue #2719649 by Spokje, harsha012, jofitz, vprocessor, nikitagupta,...
- b0e23271 - Issue #3173022 by anmolgoyal74, mherchel, andy-blum, vsujeetkumar, hinal05,...
- f65ce593 - Issue #3173008 by anmolgoyal74, mherchel, paulocs, kostyashupenko, FMB,...
- d5ee37a0 - Issue #2946 by chx, michaellenahan, jcnventura, quietone, ifrik, wengerk,...
- 883787ec - Issue #3217374 by bbrala, daffie: SIMPLETEST_BASE_URL does not validate scheme
- 1329479f - Issue #3164686 by mondrake, longwave, alexpott, ridhimaabrol24, anmolgoyal74,...
- c992b724 - Issue #3059984 by quiron, ressa, mindbet, benjifisher, Abhijith S, ckrina,...
- 6999b96b - Issue #3219881 by msnassar: Typo in the description of class MenuLinkContentAccessControlHandler
- 04e3e8d1 - Issue #1478294 by quietone, dww, tedbow: Update manager XML test fixtures...
- 1a2eb13f - Issue #3220184 by bbrala, gabesullice, Wim Leers, e0ipso, xjm, dmsmidt: Add...
- 89e03522 - Issue #3220922 by gabesullice: Remove gabesullice as Decoupled menus initiative coordinator
- a314cb12 - Issue #3216556 by sudiptadas19, mondrake, guilhermevp, daffie, andypost,...
- 53bc00ed - Issue #3202166 by xjm, vakulrai, paulocs, Neslee Canil Pinto, rubenvarela,...
- 831b2081 - Issue #1306624 by quietone, joachim, Spokje:...
- 31614ec2 - Issue #3112783 by amateescu, paulocs, mglaman, guilhermevp, dixon_, Fabianx:...
- 67bfb63d - Issue #3220183 by mondrake, longwave: Convert assertions involving use of...
- f8dbc98a - Issue #3195222 by smulvih2, ankithashetty, manish-31, larowlan, idebr,...
- 7a5addda - Issue #3021804 by andypost, scott_euser, YurkinPark, mrinalini9, voleger,...
- d3dabc46 - Issue #2897638 by Spokje, claudiu.cristea, istavros, PaulDinelle, drclaw,...
- c5886a79 - Issue #2875279 by Spokje, John Cook, jungle, voleger, mradcliffe, mrinalini9,...
- af5f0713 - Issue #3099968 by larowlan, andypost, johnwebdev, acbramley, paulocs,...
- adb24cf8 - Issue #2839558 by tim.plunkett, mohit_aghera, tkoleary, webchick, guilhermevp:...
- 5cc279ba - Issue #3056258 by mohit_aghera, vakulrai, guilhermevp, adalbertov,...
- c1179c93 - Issue #3217717 by longwave, mondrake, tim.plunkett, xjm: Replace usages of the...
- cfca6ce4 - Issue #3037157 by phenaproxima, sudiptadas19, mohit_aghera, xjm, manuel.adan,...
- dbcc1a36 - Issue #3037157 followup by xjm: Fix multi-line array format.
- fae3763c - Issue #3213572 by larowlan, phenaproxima, kim.pepper, xjm, tim.plunkett:...
- 4855e96b - Issue #3191023 by bnjmnm, nod_: Add eslint rules to check for jQuery usage
- 630cd36d - Issue #3208372 by paulocs, mherchel, Gauravmahlawat: Olivero: Refactor comments.es6.js
- 21c387a6 - Issue #3217175 by javi-er, mherchel: Olivero: Make IE11 close submenu when ESC key is pressed
- 34633c2e - Issue #3212981 by mherchel, Indrajith KB, Gauravmahlawat, andy-blum, lauriii,...
- 4c0fc0e8 - Revert "Issue #3214140 by Gauravmahlawat, manojithape, mitthukumawat: Olivero:...
- b1c2f226 - Issue #3214140 by Gauravmahlawat, manojithape, mitthukumawat, tstoeckler:...
- 55361f84 - Issue #3213074 by mherchel, Indrajith KB, Gauravmahlawat: Olivero: Refactor...
- 75103040 - Issue #3212073 by Sakthivel M, kiran.kadam911, javi-er, Gauravmahlawat,...
- 5245bd86 - Issue #2725539 by BarisW, djsagar, mgifford, andrewmacpherson: Hover/Active...
- 98e3b4cb - Issue #3211907 by Sakthivel M, tushar_sachdeva: On Mobile screens, tags label...
- 684f19be - Issue #3213957 by Gauravmahlawat, mitthukumawat, Indrajith KB: Umami demo:...
- 9a746491 - Issue #3213118 by Gauravmahlawat, Sakthivel M, Akhildev.cs, mherchel: Olivero:...
- 9c41e6ef - Issue #3210902 by mherchel, tushar_sachdeva, kostyashupenko, RenatoG,...
- 51a82dbf - Issue #3211889 by mherchel, Gauravmahlawat: Autoprefixer and PostCSS calc not...
- 61ebd080 - Issue #3200370 by mherchel, imalabya, KapilV, Indrajith KB, lauriii, alexpott,...
- 83171724 - Issue #3021803 by alexpott, AaronBauman, effulgentsia, longwave, dawehner,...
- 052816d2 - Issue #3014051 by tedbow, mitrpaka, govind.maloo, Suresh Prabhu Parkala,...
- e182007f - Issue #3174107 by brianperry, mglaman, mtift, alexpott, mradcliffe,...
- 893e3799 - Issue #2226811 by mohit_aghera, catch, Désiré, guilhermevp: FieldItemBase type...
- e5644666 - Revert "Issue #3174107 by brianperry, mglaman, mtift, alexpott, mradcliffe,...
- 37e35de9 - Issue #3221206 by quietone, guilhermevp: Fix indentation in user.role.content_editor.yml
- 45515dba - Issue #3173010 by Gauravmahlawat, starshaped: Class clean up and add #0c0d0e...
- b83ab65d - Issue #3212702 by Sakthivel M, Gauravmahlawat: Olivero: profile picture and...
- 3d6974d0 - Issue #3129666 by lokeshsahu, diqidoq, andrewmacpherson: Site branding block...
- b76f7021 - Issue #3212700 by Sakthivel M, chetanbharambe, Gauravmahlawat: Olivero: focus...
- 88968d75 - Issue #3211613 by Gauravmahlawat, Sakthivel M, chetanbharambe: Olivero:...
- 54781848 - Issue #1551534 by Lendude, vsujeetkumar, neclimdul, b_sharpe, devert, bcn,...
- 7bc0a6d7 - Issue #1882552 by andypost, phenaproxima, voleger, tedbow, alexpott,...
- e595a453 - Issue #3174107 by brianperry, mglaman, alexpott, mtift, mradcliffe, mherchel,...
- e4284d2d - Issue #3091870 by tedbow, phenaproxima, alexpott, bnjmnm, tim.plunkett,...
- abc2310b - Issue #1884836 by Lendude, cilefen, pwolanin, mgifford, alexpott: replace md5...
- 84f11341 - Issue #3091870 followup by effulgentsia, alexpott: Remove dead code.
- 4fef3bdd - Issue #3221258 by alexpott, AaronMcHale, benjifisher: Fix content editor role...
- 7e6f038d - update generated js
- ed2cb1b7 - Merge branch '9.3.x' of https://git.drupalcode.org/project/drupal into 2158943-replace-jquery-ui
Toggle commit list-
d9814015...88d83002 - 163 commits from branch
added 154 commits
-
18f9a335...b0f50910 - 152 commits from branch
project:9.3.x
- 5fee710f - Merge remote-tracking branch 'origin/9.3.x' into 2158943-replace-jquery-ui
- cd76241a - fix css indent
-
18f9a335...b0f50910 - 152 commits from branch
added 3 commits
-
3601e8ac...4894881a - 2 commits from branch
project:9.3.x
- 35c9a51e - Merge remote-tracking branch 'origin/9.3.x' into 2158943-replace-jquery-ui
-
3601e8ac...4894881a - 2 commits from branch
Please register or sign in to reply