Home
last modified time | relevance | path

Searched refs:target (Results 51 – 75 of 902) sorted by relevance

12345678910>>...37

/plugin/jalbum/syntax/
H A Djalbum.php81 $target = "target='extern' ";
82 $fullview .= '<a '.$target.'href="'.$url.'">';
111 $target = 'target="'.$this->getConf['target'].'" ';
113 $target = '';
115 $txt .= '<a '.$target.'href="'.$url.'">';
127 $target = 'target="'.$this->getConf['target'].'" ';
129 $target = '';
132 … $txt .= '<a '.$target.' href="'.$this->getConf('baseurl').$image_path.'/slides/'.$img_href.'">';
/plugin/s5/ui/default/
H A Dslides.js162 function goTo(target) { argument
163 if (target >= smax || target == snum) return;
164 go(target - snum);
237 if (key.target && isParentOrSelf(key.target, 'controls')) return;
279 if (key.target && isParentOrSelf(key.target, 'controls')) return;
288 var target;
292 } else target = e.target;
293target.getAttribute('href') != null || hasValue(target.rel, 'external') || isParentOrSelf(target, …
304 var target = null;
314 while(target != null && target.nodeName != 'BODY') {
[all …]
/plugin/s5/ui/dokuwiki/
H A Dslides.js161 function goTo(target) { argument
162 if (target >= smax || target == snum) return;
163 go(target - snum);
236 if (key.target && isParentOrSelf(key.target, 'controls')) return;
278 if (key.target && isParentOrSelf(key.target, 'controls')) return;
287 var target;
291 } else target = e.target;
292target.getAttribute('href') != null || hasValue(target.rel, 'external') || isParentOrSelf(target, …
303 var target = null;
313 while(target != null && target.nodeName != 'BODY') {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/
H A DGoogleCloudManagedidentitiesV1alpha1OpMetadata.php41 public $target; variable in Google\\Service\\ManagedServiceforMicrosoftActiveDirectoryConsumerAPI\\GoogleCloudManagedidentitiesV1alpha1OpMetadata
106 public function setTarget($target) argument
108 $this->target = $target;
115 return $this->target;
H A DGoogleCloudManagedidentitiesV1OpMetadata.php41 public $target; variable in Google\\Service\\ManagedServiceforMicrosoftActiveDirectoryConsumerAPI\\GoogleCloudManagedidentitiesV1OpMetadata
106 public function setTarget($target) argument
108 $this->target = $target;
115 return $this->target;
H A DGoogleCloudManagedidentitiesV1beta1OpMetadata.php41 public $target; variable in Google\\Service\\ManagedServiceforMicrosoftActiveDirectoryConsumerAPI\\GoogleCloudManagedidentitiesV1beta1OpMetadata
106 public function setTarget($target) argument
108 $this->target = $target;
115 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDomains/
H A DOperationMetadata.php41 public $target; variable in Google\\Service\\CloudDomains\\OperationMetadata
106 public function setTarget($target) argument
108 $this->target = $target;
115 return $this->target;
/plugin/mark2memorize/
H A Dscript.js16 function showAnswer(target) { argument
17 if (target.className == "hide") {
18 target.className = "show";
20 target.className = "hide";
/plugin/rigrr/lib/svg-pan-zoom/
H A Dsvg-pan-zoom.js161 target: originalEvent.target || originalEvent.srcElement, property in AnonymousFunctioncc29d3ce0600._addWheelListener.event
428 …var svg = (evt.target.tagName === 'svg' || evt.target.tagName === 'SVG') ? evt.target : evt.target
530 …var svg = (evt.target.tagName === 'svg' || evt.target.tagName === 'SVG') ? evt.target : evt.target
568 var target = evt.target
569 …, svg = (target.tagName === 'svg' || target.tagName === 'SVG') ? target : target.ownerSVGElement |…
615 …var svg = (evt.target.tagName === 'svg' || evt.target.tagName === 'SVG') ? evt.target : evt.target
643 …var svg = (evt.target.tagName === 'svg' || evt.target.tagName === 'SVG') ? evt.target : evt.target
1015 …var svg = (evt.target.tagName === 'svg' || evt.target.tagName === 'SVG') ? evt.target : evt.target
1053 target = target || {};
1057 target[prop] = this.extend(target[prop], source[prop])
[all …]
/plugin/sequencediagram/bower_components/lodash/lib/fp/
H A Dbuild-modules.js113 function build(target) { argument
114 target = path.resolve(target);
116 const fpPath = path.join(target, 'fp');
119 const modulePaths = glob.sync(path.join(target, '*.js'), {
122 return path.join(target, filename);
129 const modulePath = path.join(target, alias + '.js');
144 actions.push(file.write(path.join(target, 'fp.js'), template.fp()));
/plugin/jplayer/vendor/symfony/process/Tests/
H A DExecutableFinderTest.php144 $target = tempnam(sys_get_temp_dir(), 'example-windows-executable');
146 touch($target);
147 touch($target.'.BAT');
149 $this->assertFalse(is_executable($target));
154 $result = $finder->find(basename($target), false);
156 unlink($target);
157 unlink($target.'.BAT');
159 $this->assertSamePath($target.'.BAT', $result);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php416 if ($atn->ruleToStartState[$t->target->ruleIndex]->isLeftRecursiveRule) {
418 $outermostPrecedenceReturn = $t->target->ruleIndex;
423 $atn->ruleToStopState[$t->target->ruleIndex]->addTransition($trans);
444 $target = $t->target;
446 if ($target instanceof PlusBlockStartState) {
447 $target->loopBackState = $state;
452 $target = $t->target;
454 if ($target instanceo
[all...]
/plugin/elasticsearch/vendor/react/promise/src/
H A DPromise.php219 // and passing the target promise instance by reference, we can
225 $target =& $this;
229 static function ($value = null) use (&$target) {
230 if ($target !== null) {
231 $target->settle(resolve($value));
232 $target = null;
235 static function ($reason = null) use (&$target) {
236 if ($target !== null) {
237 $target->reject($reason);
238 $target
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DatabaseMigrationService/
H A DGoogleCloudClouddmsV1OperationMetadata.php45 public $target; variable in Google\\Service\\DatabaseMigrationService\\GoogleCloudClouddmsV1OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRedis/
H A DGoogleCloudRedisV1OperationMetadata.php45 public $target; variable in Google\\Service\\CloudRedis\\GoogleCloudRedisV1OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Baremetalsolution/
H A DOperationMetadata.php27 public $target; variable in Google\\Service\\Baremetalsolution\\OperationMetadata
70 public function setTarget($target) argument
72 $this->target = $target;
76 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/NetworkManagement/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\NetworkManagement\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/VMMigrationService/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\VMMigrationService\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\CloudBuild\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateAuthorityService/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\CertificateAuthorityService\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateManager/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\CertificateManager\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Networkconnectivity/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\Networkconnectivity\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataprocMetastore/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\DataprocMetastore\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\GKEHub\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMemorystoreforMemcached/
H A DOperationMetadata.php45 public $target; variable in Google\\Service\\CloudMemorystoreforMemcached\\OperationMetadata
124 public function setTarget($target) argument
126 $this->target = $target;
133 return $this->target;

12345678910>>...37