Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
cf9f223c
Commit
cf9f223c
authored
15 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#444352
by kkaefer: Remove the 4.7-era JS killswitch.
parent
fde09054
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
install.php
+1
-7
1 addition, 7 deletions
install.php
misc/drupal.js
+10
-16
10 additions, 16 deletions
misc/drupal.js
with
11 additions
and
23 deletions
install.php
+
1
−
7
View file @
cf9f223c
...
...
@@ -728,13 +728,7 @@ function install_tasks($profile, $task) {
// We add these strings as settings because JavaScript translation does not
// work on install time.
drupal_add_js
(
array
(
'copyFieldValue'
=>
array
(
'edit-site-mail'
=>
array
(
'edit-account-mail'
))),
'setting'
);
drupal_add_js
(
'
// Global Killswitch
if (Drupal.jsEnabled) {
jQuery(document).ready(function() {
Drupal.cleanURLsInstallCheck();
});
}'
,
'inline'
);
drupal_add_js
(
'jQuery(function() { Drupal.cleanURLsInstallCheck(); });'
,
'inline'
);
// Build menu to allow clean URL check.
menu_rebuild
();
...
...
This diff is collapsed.
Click to expand it.
misc/drupal.js
+
10
−
16
View file @
cf9f223c
...
...
@@ -15,11 +15,6 @@ if ($ === undefined) {
(
function
(
$
)
{
/**
* Set the variable that indicates if JavaScript behaviors should be applied.
*/
Drupal
.
jsEnabled
=
document
.
getElementsByTagName
&&
document
.
createElement
&&
document
.
createTextNode
&&
document
.
documentElement
&&
document
.
getElementById
;
/**
* Attach all registered behaviors to a page element.
*
...
...
@@ -317,17 +312,16 @@ Drupal.ahahError = function(xmlhttp, uri) {
return
message
.
replace
(
/
\n
/g
,
'
<br />
'
);
};
// Global Killswitch on the <html> element.
if
(
Drupal
.
jsEnabled
)
{
// Global Killswitch on the <html> element.
$
(
document
.
documentElement
).
addClass
(
'
js
'
);
// 'js enabled' cookie.
document
.
cookie
=
'
has_js=1; path=/
'
;
// Attach all behaviors.
$
(
document
).
ready
(
function
()
{
Drupal
.
attachBehaviors
(
this
,
Drupal
.
settings
);
});
}
// Class indicating that JS is enabled; used for styling purpose.
$
(
'
html
'
).
addClass
(
'
js
'
);
// 'js enabled' cookie.
document
.
cookie
=
'
has_js=1; path=/
'
;
// Attach all behaviors.
$
(
function
()
{
Drupal
.
attachBehaviors
(
document
,
Drupal
.
settings
);
});
/**
* The default themes.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment