This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- html template for the text item renderer -AZ --> | |
<div rsf:id="render-text-item:" class="item essay"> | |
<h5 class="title"> | |
<span rsf:id="itemNum" class="number">0</span> | |
<span class="delineator">)</span> | |
<span class="required">*</span> | |
<div rsf:id="itemText" class="label"></div> | |
</h5> | |
<div class="content"> | |
<textarea rsf:id="essayBox"></textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# COMPASS WATCH | |
desc "Watches and compiles sass to tomcat" | |
task :watch do | |
puts Paint["Watching sass", :cyan] | |
puts "Watching: " + SRC_SCSS | |
puts "Compile to: " + TOMCAT_SKIN + SCSS_CSS | |
puts "output-style: " + SCSS_OUTPUT | |
Dir.chdir(COMPASS) do | |
system "compass watch #{SRC_SCSS}:#{TOMCAT_SKIN}# --output-style #{SCSS_OUTPUT}" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input id="webSearchInput" value="Press Enter to search..." name="query" type="text"> | |
<xsl:attribute name="onblur"> | |
<xsl:text>if (this.value == '') {this.value = 'Press Enter to search...';}</xsl:text> | |
</xsl:attribute> | |
<xsl:attribute name="onfocus"> | |
<xsl:text>if (this.value == 'Press Enter to search...') {this.value = '';}</xsl:text> | |
</xsl:attribute> | |
</input> |
NewerOlder