Displaying 2 results from an estimated 2 matches for "coolfunction".
Did you mean:
callfunction
2008 Jan 22
3
prototype 1.6 Ajax.PeriodicalUpdater executing old scripts??
Hello ,
I have a PeriodicalUpdater executing every x seconds and sends a ajax
request to update an element.
Each time it comes back, the element is getting replaced with some
html and and possibly <script>coolFunction()</script>.
This seems to work fine when for prototype 1.5.
However when I upgraded to prototype 1.6, it seems to execute
coolFunction() as many times as the request has been called.
For example: the PeriodicalUpdater has already send out 5 request
already without <script>coolFunction&...
2015 Apr 02
0
request: check version requirements of Suggests package during R CMD build if install required
Hello,
Say a package (call it pkgA) has this in its DESCRIPTION file:
Suggests: foo (>= 1.2.3)
And yet I only have version 1.2.2 of foo installed, which does not include coolFunction(). pkgA's vignette has this code chunk:
library(foo)
coolFunction()
When I run R CMD build on my package, it will fail, saying that coolFunction() could not be found, but I would prefer it say (like it does in R CMD check):
Package required and available but unsuitable version: 'foo'...