'
@@ -1772,6 +1762,14 @@ define([
scope: this,
docs: this.options[0].docs
}));
+ var docs=this.options[0].docs;
+ var thumbsElm= this.$el.find('.thumb-wrap');
+ _.each(thumbsElm, function (tmb, index){
+ $(tmb).find('.title').tooltip({
+ title : docs[index].title,
+ placement : 'top-right'||'coursor'
+ });
+ });
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
@@ -1802,7 +1800,8 @@ define([
fromBlankText : 'From Blank',
newDocumentText : 'New Spreadsheet',
newDescriptionText : 'Create a new blank text document which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a document of a certain type or purpose where some styles have already been pre-applied.',
- fromTemplateText : 'From Template'
+ fromTemplateText : 'From Template',
+ txtCreateNew : 'Create New'
}, SSE.Views.FileMenuPanels.CreateNew || {}));
SSE.Views.FileMenuPanels.DocumentInfo = Common.UI.BaseView.extend(_.extend({