Difference between revisions of "Patch Email Change "Running Late" Message"

From WebOS Internals
Jump to navigation Jump to search
Line 7: Line 7:
  
 
Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.
 
Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.
 +
 
Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)
 
Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)
  
Line 18: Line 19:
  
 
save and quit
 
save and quit
reboot
+
<pre>
 +
reboot</pre>
 
----
 
----
 
Credit:ShaneM
 
Credit:ShaneM

Revision as of 15:51, 31 July 2009

If you have a calendar notification of a meeting, it will give you the option to email all attendees with the text "Running late, on my way..." However I work in a professional environment and this is a little casual, so I would like to change it.

mount -o remount rw, /
cd /usr/palm/applications/com.palm.app.calendar/app/controllers
cp reminder-assistant.js reminder-assistant.js.bak
vi reminder-assistant.js

Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.

Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)

if (this.reminder.attendees.length > 0) {

to

if (1 == 0) {

to force the attendee list test to always be false.

save and quit

reboot

Credit:ShaneM