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
3
votes
1 answer

Maintaining staging/development/production on Moovweb?

I would like some guidance when working projects with Moovweb. I'd like to understand what are some of the best practices at managing my Moovweb projects on Github. Specifically how to move them and maintain them from development to staging to…
juanca
  • 353
  • 1
  • 9
3
votes
2 answers

How do I use length() for unicode characters?

When working in the Moovweb SDK, length("çãêá") is expected to return 4, but instead returns 8. How can I ensure that the length function works correctly when using Unicode characters?
Currin Berdine
  • 287
  • 1
  • 10
2
votes
0 answers

Solving CORS issues in Moovweb

I facing one issue while working on moovweb tritium project. The site I'm proxing is using external domain (CORS) to perform some operation. Due to this, "Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at…
Kam Paul
  • 111
  • 1
  • 6
2
votes
1 answer

How to find the moovweb template used?

I created a moovweb project in http://console.moovweb.com. Is there a way to know the template which I would have selected during the project creation. As I was testing with all templates I don't remember which one I have chosen. Thanks
ambikanair
  • 4,004
  • 11
  • 43
  • 83
2
votes
1 answer

How do I change inline javascript with Tritium?

I'm transforming a website using tritium, and there's a chunk of inline javascript that interferes with how the mobile site should work. There's really only one line that I want to take out, however, so I can't really just remove the whole chunk.…
2
votes
1 answer

split

I have a long ul where the number of li's are not constant
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
and I want to split this into two ul's using Moovweb…
Cagri
  • 68
  • 4
2
votes
3 answers

Working with iframes with the moovweb sdk

I've created a project with the moovweb sdk and have trouble editing the content within an iframe on one of the pages. For instance, moving a div around inside the iframe doesn't seem to work with the tritium I'm writing. What can I do with tritium…
Alex De Simone
  • 572
  • 1
  • 4
  • 8
2
votes
1 answer

Can I use CSS selectors in Tritium for moving/copying elements?

I am trying to copy an element to a given CSS selector in Tritium. The Tritum Spec lists the signature for copy_to as: copy_to(Text %xpath) http://tritium.io/simple-mobile/1.0.224#Node.copy_to(Text%20%25xpath) I am trying to do: copy_to( …
2
votes
1 answer

In Tritium, how can I select the previous/next element?

I'm using the Moovweb SDK to transform a website, and I have a lot of pages with content that matches this format. There is an

that begins a section, and that section has a random number of

elements. Since these elements have no…

juanca
  • 353
  • 1
  • 9
2
votes
1 answer

How can I capture the host variable in a Moovweb project?

I want to be able to capture the "host variable" of my project - the bit that says "mlocal" when I'm running the project locally, or mstage/m/user1234 when on the Moovweb cloud. The variable $host contains the full URL of the site, so I can't use…
michael
  • 209
  • 1
  • 7
2
votes
2 answers

I'm using Moovweb flex boxes but the sizes aren't working properly... what's happening?

My structure is as follows:
Stuff
Other Stuff
Usually, this will split the divs side by side at 50% width each. But it's not working...…
nmakiya
  • 316
  • 1
  • 8
2
votes
1 answer

How can I check what Moovweb project and build number is deployed onto my mobile site?

Basically, if I'm on my mobile web site, how do I know what project is being used by Moovweb to create that site? Also, can I check what version/build # of the project I'm currently running?
nmakiya
  • 316
  • 1
  • 8
2
votes
1 answer

In Tritium, how do I select an element if I only know its relationship with another element?

I'm using the Moovweb SDK to transform my blog site, and I have a list of comments as such:
2
votes
2 answers

In Tritium, how do I add an attribute with no value assigned to it?

I have a normal tag: ... I need it to look like this: ... Why? jQuery Mobile feature: http://jquerymobile.com/demos/1.1.1/docs/pages/page-cache.html The…
gregorygtseng
  • 851
  • 4
  • 12
2
votes
1 answer

In Tritium, how do I remove text from a node?

I have some HTML content structured like this:
random text I want to remove Important Text #1 more text I want to remove Important Text #2
How do I remove the text in this div while keeping the…
gregorygtseng
  • 851
  • 4
  • 12