This small module provide the jquery.marquee.js for any node / block /view.
Demo: http://www.moovedev.be/moove/
Very simple to use, just add
<marquee behavior="scroll" direction="up" height="75" scrollamount="1" width="150"><p>Your text</p></marquee></p>
in your node's body or block.
It works with views and token:
add a field in your view.
then add this code (change the token_value) in the view's header:
<marquee behavior="scroll" direction="up" scrollamount="1"
height="65" width="290">
<p>[token_value]</p>
</marquee>
http://drupalcode.org/sandbox/Moove/1579648.git
Comments
Comment #1
targoo commentedWelcome !
It appears you are working in the "master" branch in git. You should really be working in a version specific branch. The most direct documentation on this is Moving from a master branch to a version branch. For additional resources please see the documentation about release naming conventions and creating a branch in git.
Review of the master branch:
This automated report was generated with PAReview.sh, your friendly project application review script. You can also use the online version to check your project. Get a review bonus and we will come back to your application sooner.
Source: http://ventral.org/pareview - PAReview.sh online service
Comment #2
targoo commentedhere is the attachment ;-)
Comment #3
patrickd commentedAs installation and usage instructions are quite important for us to review, please take a moment to make your project page follow the tips for a great project page.
We do really need more hands in the application queue and highly recommend to get a review bonus so we can come back to your application sooner.
Comment #4
jbfelix commentedMoved to 7.X-1.x branch.
Documentation added and code cleaned.
Comment #5
sylvain lecoy commentedManual review:
While this module seems very simple to test, I see some blockers to me:
1) You should use a hook_node() / _block() / _view() to add you js file.
a) either you want to effectively put it on all the pages. Use hook_boot() instead.
b) there is no need to use hook_html_head_alter() if you are not making use of this hook.
I put it as Need work.
Comment #6
MattA commentedIf you're going to add JS to every page you can do so in the module's .info file. See Managing JavaScript in Drupal 7 for more information.
Beyond that there doesn't seem to be much code to check (note checklist section 2.3).
Comment #7
gazoakley commentedIf this is incorrect, and you are still pursuing this application, then please feel free to re-open the thread and set the issue status to "needs work" or "needs review", depending on the current status of your code.