Skip to content

Instantly share code, notes, and snippets.

@Shiti
Shiti / TestConfig.jstd
Created December 12, 2012 13:49
JSTestDriver Configuration File
load:
- path/to/jquery-1.8.3.js
- path/to/jasmine-1.1.0.js
- path/to/JasmineAdapter-1.1.2.js
- path/to/angular.js
- path/to/angular-resource.js
- path/to/angular-mocks.js
- path/to/app,models and controllers
test:
- path/to/testfile.js
@Shiti
Shiti / dragNResize.js
Created October 1, 2012 18:51
jQuery UI draggable() and resizable() on an image
$('img').load(function(evt){
$('.drag').resizable()
$('.ui-wrapper').draggable();
});