0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
surveys
/
[
Home
]
File: tiki-admin_survey_questions.js
// (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: tiki-admin_survey_questions.js 54499 2015-03-17 15:31:08Z jonnybradley $ $(document).ready(function() { var listDirty = false; var setupList = function() { $(".surveyquestions tbody").sortable({ opacity:.6, stop:function (event, ui) { if ($(".save_list:visible").length === 0) { $(".save_list").show("fast").parent().show("fast"); listDirty = true; } } }).disableSelection(); }; $(window).bind("beforeunload", function( e ) { if (listDirty) { var m = tr("You have unsaved changes to your survey, are you sure you want to leave the page without saving?"); e = e || window.event; if (e && !($.browser.safari || $.browser.webkit)) { e.returnValue = m; } return m; } }); setupList(); $(".save_list").click(function(){ var $ids = $(this).parent().find(".surveyquestions td.id"); $(".surveyquestions").tikiModal(tr("Saving...")); var data = $ids.map(function () { return $(this).text(); }).get().join(); listDirty = false; $("input[name=questionIds]", "#reorderForm").val(data); $("#reorderForm").submit(); return false; }); });