Home
last modified time | relevance | path

Searched full:script (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/template/breeze/bower_components/gumby/
Dindex.html41 <script src="js/libs/modernizr-2.6.2.min.js"></script>
49 <script>
52 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"><\/script
54 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/scrip…
56 </script>
57 <script>
60 document.write('<script src="js/libs/jquery-2.0.2.min.js"><\/script>');
62 document.write('<script src="js/libs/jquery-1.10.1.min.js"><\/script>');
65 </script>
70 <script gumby-touch="js/libs" src="js/libs/gumby.js"></script>
[all …]
Ddemo.html41 <script src="js/libs/modernizr-2.6.2.min.js"></script>
1192 <script>
1195 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"><\/script
1197 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/scrip…
1199 </script>
1200 <script>
1203 document.write('<script src="js/libs/jquery-2.0.2.min.js"><\/script>');
1205 document.write('<script src="js/libs/jquery-1.10.1.min.js"><\/script>');
1208 </script>
1213 <script gumby-touch="js/libs" src="js/libs/gumby.js"></script>
[all …]
/template/breeze/bower_components/gumby/sass/extensions/modular-scale/lib/
Dmodular-scale.rb25 # Modular Scale Sass Script
26 module Sass::Script module
35 module Sass::Script::Functions
39 Sass::Script::Number.new(value)
43 Sass::Script::Number.new(value)
47 Sass::Script::Number.new(value)
51 Sass::Script::Number.new(value)
55 Sass::Script::Number.new(value)
59 Sass::Script::Number.new(value)
63 Sass::Script::Number.new(value)
[all …]
/template/breeze/
Dmain.php57 …<script src="<?php echo tpl_basedir()?>bower_components/gumby/js/libs/modernizr-2.6.2.min.js"></sc…
137 <script>
140 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"><\/script
142 …document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/scrip…
144 </script>
145 <script>
148 …document.write('<script src="<?php echo tpl_basedir()?>bower_components/gumby/js/libs/jquery-2.0.2…
150 …document.write('<script src="<?php echo tpl_basedir()?>bower_components/gumby/js/libs/jquery-1.10.…
153 </script>
158 …<script gumby-touch="js/libs" src="<?php echo tpl_basedir()?>bower_components/gumby/js/libs/gumby.…
[all …]
/template/breeze/bower_components/gumby/sass/extensions/sassy-math/lib/
Dsassy-math.rb5 module Sass::Script::Functions
12 Sass::Script::Number.new(result)
18 Sass::Script::Number.new(result)
23 Sass::Script::Number.new(result)
29 Sass::Script::Number.new(result)
34 Sass::Script::Number.new(result)
38 Sass::Script::Number.new(result)
49 Sass::Script::Number.new(result)
51 …def random(max = Sass::Script::Number.new(100)) ## shamelessly taken from here: https://gist.githu…
52 Sass::Script::Number.new(rand(max.value), max.numerator_units, max.denominator_units)
[all …]
/template/starterbootstrap/
Dtail-js.php1 <script src="<?php print DOKU_TPL; ?>js/jquery-1.9.1.min.js" type="text/javascript"></script>
2 <script type="text/javascript">
4 </script>
5 <script src="<?php print DOKU_TPL; ?>js/bootstrap.min.js" type="text/javascript"></script>
6 <script src="<?php print DOKU_TPL; ?>js/sorttable.js" type="text/javascript"></script>
7 <script src="<?php print DOKU_TPL; ?>js/script.js" type="text/javascript"></script>
9 // omit ga script code if tracking id is not set
13 <script>
17 s.parentNode.insertBefore(g,s)}(document,'script'));
18 </script>
Dhead-css.php1 <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)<…
11 <script src="<?php print DOKU_TPL; ?>js/respond.min.js" type="text/javascript"></script>
/template/strap/vendor/php-webdriver/webdriver/lib/
DJavaScriptExecutor.php12 * of the currently selected frame. The executed script is assumed to be
13 * synchronous and the result of evaluating the script will be returned.
15 * @param string $script The script to inject.
16 * @param array $arguments The arguments of the script.
17 * @return mixed The return value of the script.
19 public function executeScript($script, array $arguments = []); argument
30 * @param string $script The script to inject.
31 * @param array $arguments The arguments of the script.
32 * @return mixed The value passed by the script to the callback.
34 public function executeAsyncScript($script, array $arguments = []); argument
/template/breeze/bower_components/gumby-fittext/
DREADME.md18 <script src="/bower_components/gumby/js/libs/gumby.js"></script>
19 <script src="/bower_components/gumby/js/libs/ui/gumby.skiplink.js"></script>
20 <script src="/bower_components/gumby/js/libs/ui/gumby.toggleswitch.js"></script>
21 <script src="/bower_components/gumby-images/gumby.images.js"></script>
22 <script src="/bower_components/gumby/js/libs/gumby.init.js"></script>
25 <script src="js/gumby.min.js"></script>
26 <script src="js/plugins.js"></script>
27 <script src="js/main.js"></script>
/template/strap/resources/snippet/js/
Dcombo-loader.js5 let script = document.createElement('script');
6 script.src = src; // Set the location of the script
7 script.integrity = integrity;
8 script.crossOrigin = "anonymous";
9 script.referrerPolicy = "no-referrer";
10 script.classList.add(clazz);
11 script.addEventListener("load", callback);
13 head.appendChild(script);
Dcombo-html.js14 let inlineScriptElements = Array.from(targetElement.querySelectorAll("script:not([src])"));
26 …msg += `Railbar error: the script element (${error.element.className}) returns the following error…
35 * Load a html fragment and executes the script inside if any
44 // Execute the src scripts first (the inline script may depend on it)
45 let srcScriptElements = Array.from(targetElement.querySelectorAll("script[src]"));
47 // no src script, load all inline and return
53 // We have src script, we need to load all of them, then load all inline and return
55 … // The loader manager job is to known when all src script have loaded (script with an url)
57 // It knows how many script need to be loaded and decrease a counter when it happens.
59 // the execution of inline script
[all …]
/template/lcars/
Dmediamanager.php21 …<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.j…
22 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/functions.js"></script>
24 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/cufon-yui.js"></script>
25 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/LCARS_400.font.js"></script>
26 <script type="text/javascript">
28 </script>
Ddetail.php27 …<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.j…
28 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/functions.js"></script>
30 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/cufon-yui.js"></script>
31 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/LCARS_400.font.js"></script>
32 <script type="text/javascript">
34 </script>
Dmain.php33 …<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.j…
34 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/functions.js"></script>
36 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/cufon-yui.js"></script>
37 <script type="text/javascript" src="<?php echo DOKU_TPL;?>js/LCARS_400.font.js"></script>
38 <script type="text/javascript">
46 </script>
/template/strap/action/
Djs.php33 // To get only the script that we need
47 $scripts = &$event->data['script'];
48 foreach ($scripts as &$script) {
49 $src = $script['src'] ?? null;
55 …$script['src'] = $src . '&' . self::ACCESS_PROPERTY_KEY . '=' . self::ACCESS_PROPERTY_VALUE_PUBLIC;
83 // The directory path for the internal dokuwiki script
85 // The directory path for the plugin script (we need to keep them)
88 // Script that we want on the show page
92 1 => $dokuScriptPath . "script.js",
97 …. "cookie.js", // plugin may depend on this library such as styling (lib/plugins/styling/script.js)
[all …]
/template/dokuwikibee/dokuwikibee/
Dfooter.html11 <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
12 <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
13 <script>
21 </script>
/template/a_new_day/js/
Dscriptaculous.js1 // script.aculo.us scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
3 // Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
24 // For details, see the script.aculo.us web site: http://script.aculo.us/
30 document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
38 throw("script.aculo.us requires the Prototype JavaScript framework >= 1.5.0");
40 $A(document.getElementsByTagName("script")).findAll( function(s) {
/template/battlehorse/js/
Dscriptaculous.js1 // script.aculo.us scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
3 // Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
24 // For details, see the script.aculo.us web site: http://script.aculo.us/
30 document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
38 throw("script.aculo.us requires the Prototype JavaScript framework >= 1.5.0");
40 $A(document.getElementsByTagName("script")).findAll( function(s) {
/template/strap/vendor/symfony/process/
DPhpProcess.php18 * PhpProcess runs a PHP script in an independent process.
29 * @param string $script The PHP script to run (as a string)
35 …public function __construct(string $script, ?string $cwd = null, ?array $env = null, int $timeout … argument
44 file_put_contents($file, $script);
47 $script = null;
50 parent::__construct($php, $cwd, $env, $script, $timeout);
/template/strap/ComboStrap/
DPipelineTag.php19 $script = "";
32 $script .= '"';
35 $script .= $actual->getCapturedContent();
39 $script .= $actual->getCapturedContent();
44 $openingCall->addAttribute(PluginUtility::PAYLOAD, $script);
/template/flat/
Dmain.php20 …<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)…
48 <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'></script>
49 <script src="<?php echo DOKU_TPL."assets/js/flat.js"; ?>" ></script>
65 <div id="screen__mode" class="no"><?php /* helper to detect CSS media query in script.js */ ?></div>
/template/kajukkk/
Dmediamanager.php20 …<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)…
27 …<script src="<?php echo tpl_getMediaFile(array("bs/bootstrap.min.js")); ?>" type="text/javascript"…
47 <script>
55 </script>
/template/bootstrap3/
Dmediamanager.php22 …<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)…
36 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
37 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
/template/bs4simple/
Dmain.php34 …<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)…
115 …<div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ …
117script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7ab…
118script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="…
119script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha…
/template/bootie/
Ddetail.php22 <script>(function (H) {
24 })(document.documentElement)</script>
110script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UEN…
111 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"
113 crossorigin="anonymous"></script>
114 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"
116 crossorigin="anonymous"></script>

12345678910>>...25