Questions tagged [moovweb]

Moovweb is a mobile development framework that gives you total control over the user experience of your site.

Moovweb is a mobile development framework that gives you total control over the user experience of your site.

Learn more at http://developer.moovweb.com

112 questions
12
votes
2 answers

Permission denied (publickey) errors on Windows when using Moovweb

I'm able to authenticate, generate, push etc just fine with my SSH keys and Moovweb credentials on my Mac and Linux machines. However, on my Windows machine, using Git Bash, I get an SSH Permission denied (publickey) error. The error message is…
tdesikan
  • 513
  • 1
  • 4
  • 11
9
votes
1 answer

Including Web Fonts With Moovweb

I am trying to include Google Fonts in my Moovweb site via @import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700); and then including the tag 'Oswald' in font-family. I have done this before with static sites, but for some reason…
Danny Sullivan
  • 277
  • 2
  • 12
6
votes
2 answers

How to remove white space in html using Tritium

I'm using the Moovweb SDK and I'd like to remove excess white space from the beginning or end of any elements. It sometimes shows up as or and I want to remove it since it messes with my spacing. How can I get around doing…
shijing
  • 63
  • 3
5
votes
3 answers

Compass giving the error Unrecognized file type: png'))

I am working on a moovweb project that uses compass. Right now, I am implementing support for 2x images for sprites. What I am doing is to let compass generate the 1x sprite, like so: $icons-dimensions: true; @import "icons/*.png"; @include…
fegemo
  • 2,475
  • 6
  • 20
  • 40
5
votes
2 answers

How can access the headers of an incoming request in tritium?

I would like to be able to add some logic to my tritium project based on the incoming request header. Is it possible to access the header information and then perform match() with() logic? My plan is to take an existing URL (that can be accessed via…
naryasece
  • 101
  • 1
5
votes
1 answer

How can I convert a desktop site's navigation into a collapsable menu?

The header has a navigation menu I'd prefer to keep, but it's taking up too much space. What can I do to make it look good on mobile?
David Klein
  • 411
  • 1
  • 3
  • 10
4
votes
1 answer

Can we provide a project url which is hosted locally as the 'source site' while creating a moovweb project?

Will it be possible to create a moovweb project by providing url of the local project as source site value??Is it necessary that the site should be live?
ambikanair
  • 4,004
  • 11
  • 43
  • 83
4
votes
1 answer

How do I set a cookie that expires after a certain time using Tritium?

I'd like to create a cookie that expires within 5 minutes of the user visiting my page. I know about add_cookie() function, but have no idea how to set it to expire.
4
votes
1 answer

How to use non-standard ports?

I'm trying to get moov running on port 8080 but am getting the error: $ curl -s -i http://mlocal.nytimes.com:8080/ HTTP/1.0 534 Internal Server Error Connection: close Content-Type: text/plain; Content-Length: 69 Host header…
mjs
  • 63,493
  • 27
  • 91
  • 122
4
votes
1 answer

How can I create more than one page from a single upstream page using Moovweb?

I have a single page, lets say: http://en.wikipedia.org/wiki/Main_Page But I want to fragment it into 3 pages: A page w just the sidebar A 'Featured' page w just the 'green' sections (featured article / did you know) A 'News' page w just the 'blue'…
Sean Jezewski
  • 145
  • 1
  • 7
4
votes
2 answers

html.ts file is running twice in my moovweb project

I'm running into an issue where the html.ts file is being run twice on certain pages, even with AJAX turned off in the browser. It does not seem to be a mapping issue, as it does this behavior even if I comment out all the mappings. The page looks…
naryasece
  • 101
  • 1
4
votes
2 answers

How can I push a branch of my GitHub project repo to the Moovweb Cloud?

I am using GitHub and have been pushing the master branch of my repo to the Moovweb Cloud. I have started branching my project. How can I push a specific branch to the Moovweb Cloud? Thanks!
mmb124
  • 51
  • 1
3
votes
1 answer

transform category drop-down to toggle using moovweb

I want to add toggler to the following code:

The Latest

3
votes
1 answer

Can available json response be reused in tritium to paint new mobile home page?

I am trying to use moovweb to transform existing desktop site to mobile version. I already have so many ajax response available in the desktop version. We also have a new wire frame for the mobile version.Is there any way to reuse the ajax response…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
3
votes
1 answer

Inject multi-line JS in Tritium

I have a javascript snippet that I need to inject on each page to fire off my google analytics. I tried using inject and keep getting errors: inject("// load ga.js if it doesn't exist if (!window._gat) { var ga =…
1
2 3 4 5 6 7 8