Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. onClick : function( value ){
  2.  
  3. switch (value) {
  4. case "remove_border": remove_border(editor.getSelection().getSelectedText()); break;
  5. }
  6. }
  7. });
  8. }
  9. });
  10.  
  11. function remove_border(selection){
  12. /* what must I put in here to make this function work? */
  13. alert(selection);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement