-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new modifications : Hashset, inputtracker, before and after execution…
… methods. new modifications : Hashset, inputtracker, before and after execution methods.
- Loading branch information
Showing
20 changed files
with
1,107 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
"~/JavaScript-Mvc-framework\byId.js", | ||
"~/Content/Scripts/FrontEnd/jquery.blockUI.js", | ||
"~/Content/Scripts/jquery.blockUI.js", | ||
|
||
"~/JavaScript-Mvc-framework/extensions/ajax.js", | ||
"~/JavaScript-Mvc-framework/extensions/clone.js", | ||
"~/JavaScript-Mvc-framework/extensions/constants.js", | ||
"~/JavaScript-Mvc-framework/Prototype/Array.js", | ||
|
||
"~/JavaScript-Mvc-framework/extensions/initialize.js", | ||
"~/JavaScript-Mvc-framework/extensions/modal.js", | ||
"~/JavaScript-Mvc-framework/extensions/pagination.js", | ||
"~/JavaScript-Mvc-framework/extensions/regularExp.js", | ||
"~/JavaScript-Mvc-framework/extensions/selectors.js", | ||
"~/JavaScript-Mvc-framework/extensions/spinner.js", | ||
"~/JavaScript-Mvc-framework/extensions/urls.js", | ||
"~/JavaScript-Mvc-framework/controllers/controllers.js", | ||
//"~/JavaScript-Mvc-framework/controllers/homeController.js", | ||
"~/JavaScript-Mvc-framework/areas/admin/controllers/NavItemsController.js", | ||
"~/JavaScript-Mvc-framework/controllers/initialize.js", | ||
"~/JavaScript-Mvc-framework/jQueryExtend.js", | ||
"~/JavaScript-Mvc-framework/jQueryExtend.fn.js", | ||
"~/JavaScript-Mvc-framework/app.config.js", | ||
"~/JavaScript-Mvc-framework/app.js", | ||
"~/JavaScript-Mvc-framework/app.initializeMethods.js", | ||
"~/JavaScript-Mvc-framework/app.run.js" | ||
"~/JavaScript-Mvc-framework/app.js", | ||
"~/JavaScript-Mvc-framework/app.executeBefore.js", | ||
"~/JavaScript-Mvc-framework/app.executeAfter.js", | ||
"~/JavaScript-Mvc-framework/jQueryCaching.js", | ||
"~/JavaScript-Mvc-framework/attachInitialize.js", | ||
|
||
"~/JavaScript-Mvc-framework/schema/schema.js", | ||
"~/JavaScript-Mvc-framework/schema/hashset.js", | ||
"~/JavaScript-Mvc-framework/schema/url.js", | ||
|
||
"~/JavaScript-Mvc-framework/extensions/ajax.js", | ||
"~/JavaScript-Mvc-framework/extensions/hiddenContainer.js", | ||
"~/JavaScript-Mvc-framework/extensions/clone.js", | ||
"~/JavaScript-Mvc-framework/extensions/constants.js", | ||
"~/JavaScript-Mvc-framework/extensions/initialize.js", | ||
"~/JavaScript-Mvc-framework/extensions/inputChangeTracker.js", | ||
"~/JavaScript-Mvc-framework/extensions/modal.js", | ||
"~/JavaScript-Mvc-framework/extensions/pagination.js", | ||
"~/JavaScript-Mvc-framework/extensions/regularExp.js", | ||
"~/JavaScript-Mvc-framework/extensions/selectors.js", | ||
"~/JavaScript-Mvc-framework/extensions/spinner.js", | ||
"~/JavaScript-Mvc-framework/extensions/urls.js", | ||
|
||
"~/JavaScript-Mvc-framework/controllers/controllers.js", | ||
"~/JavaScript-Mvc-framework/controllers/initialize.js", | ||
"~/JavaScript-Mvc-framework/controllers/AppController.js", | ||
|
||
"~/JavaScript-Mvc-framework/areas/admin/controllers/NavItemsController.js", | ||
|
||
"~/JavaScript-Mvc-framework/jQueryExtend.js", | ||
"~/JavaScript-Mvc-framework/jQueryExtend.fn.js", | ||
"~/JavaScript-Mvc-framework/app.config.js", | ||
"~/JavaScript-Mvc-framework/app.global.js", | ||
|
||
"~/JavaScript-Mvc-framework/app.run.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/// <reference path="byId.js" /> | ||
/// <reference path="D:\Working (SSD)\GitHub\WereViewProject\WereViewApp\Content/Scripts/toastr.js" /> | ||
/// <reference path="D:\Working (SSD)\GitHub\WereViewProject\WereViewApp\Content/Scripts/jquery-2.1.4.js" /> | ||
/// <reference path="D:\Working (SSD)\GitHub\WereViewProject\WereViewApp\Content/Scripts/jquery.blockUI.js" /> | ||
/// <reference path="D:\Working (SSD)\GitHub\WereViewProject\WereViewApp\Content/Scripts/jquery-2.1.4.intellisense.js" /> | ||
/// <reference path="app.global.js" /> | ||
; $.app = $.app || {}; | ||
/** | ||
* method which runs after all the initialization is done. | ||
*/ | ||
$.app.executeAfter = { | ||
/** | ||
* method which runs after all the initialization is done. | ||
* @returns {} | ||
*/ | ||
documentSpinnerHide: function () { | ||
$.app.global.documentFullSpinnerHide(); | ||
var timer = setTimeout(function () { | ||
$.app.global.documentFullSpinnerHide(); | ||
clearTimeout(timer); | ||
}, 2500); | ||
}, | ||
captureAnchorAndShowSpinner: function () { | ||
var $anchors = $.findCached("a:link"); | ||
$anchors.click(function (e) { | ||
var $link = $(this), | ||
href = $link.attr("href"); | ||
if (!$.isEmpty(href)) { | ||
var startsWith = href[0]; | ||
if (startsWith !== "#") { | ||
e.preventDefault(); | ||
$.app.global.documentFullSpinnerShow("... Please Wait ..."); | ||
window.location = $link.attr("href"); | ||
} | ||
} | ||
}); | ||
}, | ||
|
||
}; |
Oops, something went wrong.