Skip to content

Commit

Permalink
Work on tippy tepee support within mouseHole
Browse files Browse the repository at this point in the history
  • Loading branch information
lwu committed Feb 8, 2007
1 parent 1fb0618 commit 8eafed4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/tippytippytepee/tepee.rb
Expand Up @@ -282,11 +282,11 @@ def edit
def edit_code
html do
head do
link :href=>'/static/codepress.css', :rel=>'stylesheet', :type=>'text/css'
link :href=>'/static/languages/codepress-ruby.css', :rel=>'stylesheet',
link :href=>URL('/static/codepress.css'), :rel=>'stylesheet', :type=>'text/css'
link :href=>URL('/static/languages/codepress-ruby.css'), :rel=>'stylesheet',
:type=>'text/css', :id=>'cp-lang-style'
script :type=>'text/javascript', :src=>'/static/codepress.js'
script :type=>'text/javascript', :src=>'/static/languages/codepress-ruby.js'
script :type=>'text/javascript', :src=>URL('/static/codepress.js')
script :type=>'text/javascript', :src=>URL('/static/languages/codepress-ruby.js')
script "CodePress.language = 'ruby';", :type=>'text/javascript'
end
body :id=>'ffedt' do
Expand Down Expand Up @@ -385,7 +385,7 @@ def puts(txt); self << txt; end

def Tepee.create
Tepee::Models.create_schema :assume => (Tepee::Models::Page.table_exists? ? 1.0 : 0.0)
Tepee::Models::Session.create_schema
# Tepee::Models::Session.create_schema
end

if __FILE__ == $0
Expand Down

0 comments on commit 8eafed4

Please sign in to comment.