/javascript-mode/extjs.confirm
http://github.com/ridgetang/snippets · Unknown · 16 lines · 16 code · 0 blank · 0 comment · 0 complexity · 0cbe1f3fe29027f0a02547a0cc0edb4e MD5 · raw file
- # name : Ext.Msg.confirm(...)
- # key : confirm
- # group : extjs
- # contributor : crazycode@gmail.com
- # This was cloned from a TextMate bundle for yasnippet.
- # --
- Ext.Msg.confirm(
- '${1:чбошод}',
- '${2:description}',
- function(btn) {
- if (btn == 'yes') {
- $0
- }
- },
- ${3:this}
- );